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 = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
- {
- }
- }
- }
|