Esempio n. 1
0
 public AdminController(ICompanyRepo compRep, IEmployeeRepo empRep, IEmployeeLoginDataRepo eldRep, ICompanyDepartmentRepo compDepRep)
 {
     this.compRep    = compRep;
     this.empRep     = empRep;
     this.eldRep     = eldRep;
     this.compDepRep = compDepRep;
 }
 public AccountController(IEmployeeLoginDataRepo eldRep, ICandidateRepo candRep, dbContainer context)
 {
     _context     = context;
     this.eldRep  = eldRep;
     this.candRep = candRep;
 }