public PayRollsController(IEmployeeInfoRepository e, IPayRollRepository a, IBranchRepository b, IDepartmentRepository d, IDesignationRepository de, IHttpContextAccessor f)
 {
     this.payRollRepository      = a;
     this.employeeInfoRepository = e;
     this.branchRepository       = b;
     this.departmentRepository   = d;
     this.designationRepository  = de;
     this.httpContextAccessor    = f;
 }
Пример #2
0
 public PayRollsController(IEmployeeInfoRepository e, IPayRollRepository a)
 {
     this.payRollRepository      = a;
     this.employeeInfoRepository = e;
 }
Пример #3
0
 public PayRollService(IPayRollRepository repository) : base(repository)
 {
 }