EmployeeDetailModel.cs 499 B

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