JobModel.cs 405 B

12345678910111213141516
  1. using System;
  2. using System.Linq;
  3. using Comal.Classes;
  4. using InABox.Core;
  5. using System.Diagnostics.CodeAnalysis;
  6. using InABox.Mobile;
  7. namespace PRS.Mobile
  8. {
  9. public class JobModel : CoreRepository<JobModel, JobShell, Job>
  10. {
  11. public JobModel(IModelHost host, Func<Filter<Job>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
  12. {
  13. }
  14. }
  15. }