| 1234567891011121314 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class ShipmentModel : CoreRepository<ShipmentModel,ShipmentShell, Shipment>
- {
- public ShipmentModel(IModelHost host, Func<Filter<Shipment>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
- {
- }
- }
- }
|