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