KanbanDetailModel.cs 569 B

123456789101112131415161718192021
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. using System.Diagnostics.CodeAnalysis;
  5. namespace comal.timesheets
  6. {
  7. public class KanbanDetailModel : DetailModel<KanbanDetailModel,KanbanDetailShell,Kanban>
  8. {
  9. public KanbanDetailModel(IModelHost host, Func<Filter<Kanban>> filter, bool transient = false) : base(host, filter, transient)
  10. {
  11. }
  12. public KanbanDetailModel(IModelHost host, Func<Filter<Kanban>> filter, [NotNull] string filename) : base(host, filter, filename)
  13. {
  14. }
  15. }
  16. }