Example #1
0
 public EmployeesController(
     IEmployeesService employeeService,
     IEvaluationFormsService evaluationFormsService,
     IEvaluationsService evaluationsService,
     IAuthenticationService authenticationService,
     IEvaluationStatisticsService evaluationStatistics)
 {
     this.evaluationFormsService = evaluationFormsService;
     this.evaluationsService     = evaluationsService;
     this.employeesService       = employeeService;
     this.authenticationService  = authenticationService;
     this.evaluationStatistics   = evaluationStatistics;
 }