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