JobITPModel.cs 455 B

1234567891011121314151617
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. namespace PRS.Mobile
  5. {
  6. public class JobITPModel : ListModel<JobITPModel,JobITPShell,JobITP>
  7. {
  8. public JobITPModel(IModelHost host, Func<Filter<JobITP>> filter, bool transient = false) : base(host, filter, transient)
  9. {
  10. }
  11. public JobITPModel(IModelHost host, Func<Filter<JobITP>> filter, string filename) : base(host, filter, filename)
  12. {
  13. }
  14. }
  15. }