123456789101112131415161718192021 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- namespace comal.timesheets
- {
- public class KanbanDetailModel : DetailModel<KanbanDetailModel,KanbanDetailShell,Kanban>
- {
- public KanbanDetailModel(IModelHost host, Func<Filter<Kanban>> filter, bool transient = false) : base(host, filter, transient)
- {
- }
- public KanbanDetailModel(IModelHost host, Func<Filter<Kanban>> filter, [NotNull] string filename) : base(host, filter, filename)
- {
- }
-
-
-
- }
- }
|