Exemplo n.º 1
0
 public SchedulerServices(IPayrollServices payrollServices)
 {
     this.payrollServices = payrollServices;
 }
Exemplo n.º 2
0
 public PayrollController(IPayrollServices payrollService, IGenerateDocumentService generateDocumentService)
 {
     this.payrollService          = payrollService;
     this.generateDocumentService = generateDocumentService;
 }
Exemplo n.º 3
0
 public PayrollAuto(IPayrollServices payrollService, string monthCode, int yearId)
 {
     this.payrollService = payrollService;
     this.monthCode      = monthCode;
     this.yearId         = yearId;
 }