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