12345678910111213141516171819202122 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public class GPSTrackerTypeLookups : EntityLookup<GPSTrackerType>
- {
- public override Columns<GPSTrackerType> DefineColumns()
- {
- return new Columns<GPSTrackerType>().Default();
- }
- public override Filter<GPSTrackerType> DefineFilter()
- {
- return null;
- }
- public override SortOrder<GPSTrackerType> DefineSortOrder()
- {
- return new SortOrder<GPSTrackerType>(x => x.Description);
- }
- }
- }
|