JobITPModel.cs 363 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 JobITPModel : CoreRepository<JobITPModel,JobITPShell,JobITP>
  8. {
  9. public JobITPModel(IModelHost host, Func<Filter<JobITP>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
  10. {
  11. }
  12. }
  13. }