StockMovementBatchModel.cs 531 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.ObjectModel;
  3. using Comal.Classes;
  4. using InABox.Core;
  5. using InABox.Mobile;
  6. using Plugin.BLE.Abstractions.Extensions;
  7. namespace PRS.Mobile
  8. {
  9. public class StockMovementBatchModel : CoreRepository<StockMovementBatchModel, StockMovementBatchShell, StockMovementBatch>
  10. {
  11. public StockMovementBatchModel(IModelHost host, Func<Filter<StockMovementBatch>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
  12. {
  13. }
  14. }
  15. }