| 123456789101112131415161718 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- namespace PRS.Mobile
- {
- public class JobDocumentModel : ListModel<JobDocumentModel, JobDocumentShell, JobDocumentSetMileStoneFile>
- {
- public JobDocumentModel(IModelHost host, Func<Filter<JobDocumentSetMileStoneFile>> filter, bool transient = false) : base(host, filter, transient)
- {
- }
- public JobDocumentModel(IModelHost host, Func<Filter<JobDocumentSetMileStoneFile>> filter, string filename) : base(host, filter, filename)
- {
- }
- }
- }
|