| 12345678910111213141516171819 |
- using System;
- using System.IO;
- using System.Linq;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- using InABox.Mobile;
- using Xamarin.Forms;
- namespace PRS.Mobile
- {
- public class DeliveryModel : CoreRepository<DeliveryModel,DeliveryShell, Delivery>
- {
- public DeliveryModel(IModelHost host, Func<Filter<Delivery>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
- {
- }
-
- }
- }
|