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