| 12345678910111213141516171819202122 |
- using System;
- using System.Linq;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- namespace comal.timesheets
- {
- public class KanbanFormModel : ListModel<KanbanFormModel, KanbanFormShell, KanbanForm>
- {
- public KanbanFormModel(IModelHost host, Func<Filter<KanbanForm>> filter, bool transient = false) : base(host, filter, transient)
- {
- }
- public KanbanFormModel(IModelHost host, Func<Filter<KanbanForm>> filter, [NotNull] string filename) : base(host, filter, filename)
- {
- }
- public IDigitalFormInstanceShell[] Forms => Items.OfType<IDigitalFormInstanceShell>().ToArray();
- }
- }
|