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