Пример #1
0
 public static Employee Younger(Employee e1, Employee e2)
 {
     return(e1.YearsLeft() > e2.YearsLeft() ? e1 : e2);
 }