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