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