AssignmentModel.cs 701 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using Comal.Classes;
  5. using InABox.Core;
  6. using System.Diagnostics.CodeAnalysis;
  7. namespace comal.timesheets
  8. {
  9. public class AssignmentModel : ListModel<AssignmentModel, AssignmentShell, Assignment>
  10. {
  11. public AssignmentModel(IModelHost host, Func<Filter<Assignment>> filter, bool transient = false) : base(host, filter, transient)
  12. {
  13. }
  14. public AssignmentModel(IModelHost host, Func<Filter<Assignment>> filter, [NotNull] String filename) : base(host, filter, filename)
  15. {
  16. }
  17. // public override Columns<(.+)> Columns => AssignmentShell.Columns.Columns;
  18. }
  19. }