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