DeliveryItemBarcodeModel.cs 476 B

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