Ejemplo n.º 1
0
 public Manager(IEmployeePayrollService employeePayrollService, IEmployeeVacationCalculationService employeeVacationCalculationService)
     : base(employeePayrollService, employeeVacationCalculationService)
 {
 }
Ejemplo n.º 2
0
 protected SeasonalEmployee(IEmployeePayrollService employeePayrollService, IEmployeeVacationCalculationService employeeVacationCalculationService)
     : base(employeePayrollService, employeeVacationCalculationService)
 {
 }
Ejemplo n.º 3
0
 protected SalariedEmployee(IEmployeePayrollService employeePayrollService, IEmployeeVacationCalculationService employeeVacationCalculationService)
     : base(employeePayrollService, employeeVacationCalculationService)
 {
 }
Ejemplo n.º 4
0
 protected CompanyEmployee(IEmployeePayrollService employeePayrollService, IEmployeeVacationCalculationService employeeVacationCalculationService)
 {
     this.employeePayrollService             = employeePayrollService;
     this.employeeVacationCalculationService = employeeVacationCalculationService;
 }