| 123456789101112131415161718192021222324252627 | 
							- using InABox.Core;
 
- namespace Comal.Classes
 
- {
 
-     public class CustomerLookups : EntityLookup<Customer>
 
-     {
 
-         public override Columns<Customer> DefineColumns()
 
-         {
 
-             return new Columns<Customer>(
 
-                 x => x.ID,
 
-                 x => x.Code,
 
-                 x => x.Name
 
-             );
 
-         }
 
-         public override Filter<Customer> DefineFilter()
 
-         {
 
-             return null;
 
-         }
 
-         public override SortOrder<Customer> DefineSortOrder()
 
-         {
 
-             return new SortOrder<Customer>(x => x.Code);
 
-         }
 
-     }
 
- }
 
 
  |