| 12345678910111213141516171819202122232425 | 
							- using InABox.Core;
 
- namespace Comal.Classes
 
- {
 
-     public class RequisitionDestinationLookups : EntityLookup<RequisitionDestination>
 
-     {
 
-         public override Columns<RequisitionDestination> DefineColumns()
 
-         {
 
-             return new Columns<RequisitionDestination>(
 
-                 x => x.ID,
 
-                 x => x.Description
 
-             );
 
-         }
 
-         public override Filter<RequisitionDestination> DefineFilter()
 
-         {
 
-             return null;
 
-         }
 
-         public override SortOrder<RequisitionDestination> DefineSortOrder()
 
-         {
 
-             return new SortOrder<RequisitionDestination>(x => x.Sequence);
 
-         }
 
-     }
 
- }
 
 
  |