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