StockLocationModel.cs 417 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 StockLocationModel : CoreRepository<StockLocationModel, StockLocationShell, StockLocation>
  8. {
  9. public StockLocationModel(IModelHost host, Func<Filter<StockLocation>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
  10. {
  11. }
  12. }
  13. }