| 1234567891011121314151617181920 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- namespace comal.timesheets
- {
- public class ProductGroupLookupModel : LookupModel<ProductGroupLookupModel, ProductGroupLookupShell, ProductGroup>
- {
- public ProductGroupLookupModel(IModelHost host, Func<Filter<ProductGroup>> filter, bool transient = false) : base(host, filter, transient)
- {
- }
- public ProductGroupLookupModel(IModelHost host, Func<Filter<ProductGroup>> filter, [NotNull] String filename) : base(host, filter, filename)
- {
- }
- // public override Columns<(.+)> Columns => ProductGroupLookupItem.Columns.Columns;
- }
- }
|