12345678910111213141516171819202122 |
- using System;
- using System.Linq;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- namespace comal.timesheets
- {
- public class JobModel : ListModel<JobModel, JobShell, Job>
- {
- public JobModel(IModelHost host, Func<Filter<Job>> filter, bool transient = false) : base(host, filter, transient)
- {
- }
- public JobModel(IModelHost host, Func<Filter<Job>> filter, [NotNull] string filename) : base(host, filter, filename)
- {
- }
-
- // public override Columns<(.+)> Columns => JobShell.Columns.Columns;
-
- }
- }
|