ActivityEmployeeGrid.cs 410 B

1234567891011121314
  1. using System;
  2. using System.Linq.Expressions;
  3. using Comal.Classes;
  4. using InABox.DynamicGrid;
  5. namespace PRSDesktop
  6. {
  7. public class ActivityEmployeeGrid : DynamicCrossJoinGrid<EmployeeActivity, Activity>
  8. {
  9. public override Expression<Func<EmployeeActivity, Guid>> LeftMapping => x => x.Activity.ID;
  10. public override Expression<Func<Activity, Guid>> LeftProperty => x => x.ID;
  11. }
  12. }