ProductGroupLookupModel.cs 685 B

1234567891011121314151617181920
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. using System.Diagnostics.CodeAnalysis;
  5. namespace comal.timesheets
  6. {
  7. public class ProductGroupLookupModel : LookupModel<ProductGroupLookupModel, ProductGroupLookupShell, ProductGroup>
  8. {
  9. public ProductGroupLookupModel(IModelHost host, Func<Filter<ProductGroup>> filter, bool transient = false) : base(host, filter, transient)
  10. {
  11. }
  12. public ProductGroupLookupModel(IModelHost host, Func<Filter<ProductGroup>> filter, [NotNull] String filename) : base(host, filter, filename)
  13. {
  14. }
  15. // public override Columns<(.+)> Columns => ProductGroupLookupItem.Columns.Columns;
  16. }
  17. }