ProductInstanceModel.cs 427 B

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