| 123456789101112131415161718192021 |
- using System;
- using System.Diagnostics.CodeAnalysis;
- using Comal.Classes;
- using InABox.Core;
- namespace comal.timesheets
- {
-
- public class KanbanLookupModel : LookupModel<KanbanLookupModel, KanbanLookupShell, Kanban>
- {
- public KanbanLookupModel(IModelHost host, Func<Filter<Kanban>> filter, bool transient = false) : base(host, filter, transient)
- {
- }
- public KanbanLookupModel(IModelHost host, Func<Filter<Kanban>> filter, [NotNull] string filename) : base(host, filter, filename)
- {
- }
- // public override Columns<(.+)> Columns => KanbanLookupItem.Columns.Columns;
- }
- }
|