GPSTrackerTypeLookups.cs 543 B

12345678910111213141516171819202122
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public class GPSTrackerTypeLookups : EntityLookup<GPSTrackerType>
  5. {
  6. public override Columns<GPSTrackerType> DefineColumns()
  7. {
  8. return new Columns<GPSTrackerType>().Default();
  9. }
  10. public override Filter<GPSTrackerType> DefineFilter()
  11. {
  12. return null;
  13. }
  14. public override SortOrder<GPSTrackerType> DefineSortOrder()
  15. {
  16. return new SortOrder<GPSTrackerType>(x => x.Description);
  17. }
  18. }
  19. }