1234567891011121314151617181920212223 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public class QuoteDesignSectionLookups : EntityLookup<QuoteDesignSection>
- {
- public override Columns<QuoteDesignSection> DefineColumns()
- {
- return base.DefineColumns()
- .Add(x => x.Description);
- }
- public override Filter<QuoteDesignSection> DefineFilter()
- {
- return null;
- }
- public override SortOrder<QuoteDesignSection> DefineSortOrder()
- {
- return new SortOrder<QuoteDesignSection>(x => x.Description);
- }
- }
- }
|