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