JobFormModel.cs 379 B

1234567891011121314
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. using InABox.Mobile;
  5. namespace PRS.Mobile
  6. {
  7. public class JobFormModel : DigitalFormInstanceModel<JobFormModel,JobFormShell,JobForm>
  8. {
  9. public JobFormModel(IModelHost host, Func<Filter<JobForm>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
  10. {
  11. }
  12. }
  13. }