| 12345678910111213141516171819202122232425262728 | using System;using System.Linq;using InABox.Core;namespace Comal.Classes{    public class JobITPLookups : EntityLookup<JobITP>    {        public override Columns<JobITP> DefineColumns()        {            return Columns.None<JobITP>().Add(                x => x.ID,                x => x.Code,                x => x.Description            );        }        public override Filter<JobITP> DefineFilter()        {            return new Filter<JobITP>(x => x.ID).IsEqualTo(Guid.Empty);        }        public override SortOrder<JobITP> DefineSortOrder()        {            return new SortOrder<JobITP>(x => x.Code);        }    }}
 |