JobModel.cs 603 B

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