ProductGroupModel.cs 441 B

12345678910111213141516
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. using System.Diagnostics.CodeAnalysis;
  5. using InABox.Mobile;
  6. namespace PRS.Mobile
  7. {
  8. public class ProductGroupModel : CoreRepository<ProductGroupModel, ProductGroupShell, ProductGroup>
  9. {
  10. public ProductGroupModel(IModelHost host, Func<Filter<ProductGroup>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
  11. {
  12. }
  13. }
  14. }