| 1234567891011121314151617181920212223242526 | 
							- using InABox.Core;
 
- namespace Comal.Classes
 
- {
 
-     public class SupplierCategoryLookup : EntityLookup<SupplierCategory>
 
-     {
 
-         public override Columns<SupplierCategory> DefineColumns()
 
-         {
 
-             return Columns.None<SupplierCategory>().Add(
 
-                 x => x.ID,
 
-                 x => x.Code,
 
-                 x => x.Description
 
-             );
 
-         }
 
-         public override Filter<SupplierCategory>? DefineFilter()
 
-         {
 
-             return null;
 
-         }
 
-         public override SortOrder<SupplierCategory> DefineSortOrder()
 
-         {
 
-             return new SortOrder<SupplierCategory>(x => x.Code);
 
-         }
 
-     }
 
- }
 
 
  |