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