public ResignsController(IEmployeeInfoRepository e, IResignRepository a, IBranchRepository b, IOverTimeRepository o)
 {
     this.resignRepository       = a;
     this.employeeInfoRepository = e;
     this.branchRepository       = b;
     this.overTimeRepository     = o;
 }
Esempio n. 2
0
 public ResignsController(IEmployeeInfoRepository e, IResignRepository a)
 {
     this.resignRepository       = a;
     this.employeeInfoRepository = e;
 }