public EvaluationFormsController(
     IEvaluationFormsService evaluationFormsService,
     IEvaluationsService evaluationsService,
     IAuthenticationService authenticationService,
     IEmployeesService employeesService)
 {
     this.evaluationFormsService = evaluationFormsService;
     this.evaluationsService     = evaluationsService;
     this.authenticationService  = authenticationService;
     this.employeesService       = employeesService;
 }
 public EvaluationStatisticsService(IEvaluationsService evaluationsService)
 {
     this.evaluationsService = evaluationsService;
 }
Esempio n. 3
0
 public EvaluationsController(IEvaluationsService service)
 {
     _service = service;
 }