JobITPModel.cs 303 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): base(host, filter)
  10. {
  11. }
  12. }
  13. }