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