| 1234567891011121314 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class JobFormModel : DigitalFormInstanceModel<JobFormModel,JobFormShell,JobForm>
- {
- public JobFormModel(IModelHost host, Func<Filter<JobForm>> filter): base(host, filter)
- {
- }
- }
- }
|