namespace Comal.Classes { } //public class JobZoneLookups : ILookupDefinition, ILookupDefinition //{ // public Columns DefineColumns() // { // return new Columns( // x => x.ID, // x => x.Code, // x => x.Description // ); // } // public Filter DefineFilter() // { // return new Filter(x => x.ID).IsEqualTo(Guid.Empty).And(x => x.ID).IsNotEqualTo(Guid.Empty); // } // public Filter DefineFilter(ManufacturingPacket[] items) // { // if (items.Length == 1) // return new Filter(x => x.Job.ID).IsEqualTo(items.First().SetoutLink.JobLink.ID); // return DefineFilter(); // } // public SortOrder DefineSortOrder() // { // return new SortOrder(x => x.Description); // } //}