public EmployeeDetailServices(IEmployeeDetailRepo iEmployeeDetailRepo)
 {
     this._IEmployeeDetailRepo = iEmployeeDetailRepo;
 }
Пример #2
0
 public PayslipService(IEmployeeDetailRepo repo, ITaxCalculater taxCalculater)
 {
     _repo          = repo;
     _taxCalculater = taxCalculater;
 }