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