Ejemplo n.º 1
0
 public EmployeeController(IEmployeeService _employeeService, IDepartamentService _departamentService, ISalaryTabulatorService _salaryTabulatorService)
 {
     this._employeeService        = _employeeService;
     this._departamentService     = _departamentService;
     this._salaryTabulatorService = _salaryTabulatorService;
     sb = new StringBuilder();
 }
Ejemplo n.º 2
0
 public SalaryTabulatorController(ISalaryTabulatorService salaryTabuladorService, IJobService jobService)
 {
     this.jobService             = jobService;
     this.salaryTabuladorService = salaryTabuladorService;
     sb = new StringBuilder();
 }