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