public HomeController(IEmployeeReprository employeeReprository, IWebHostEnvironment hostingEnvironment, RoleManager <IdentityRole> roleManager, UserManager <IdentityUser> userManager, IGuarantorRepo guarantor, IPayment payment, IManageEmployment employment) { _employeeReprository = employeeReprository; this.hostingEnvironment = hostingEnvironment; this.roleManager = roleManager; this.userManager = userManager; this._guarantor = guarantor; this._payment = payment; this._employment = employment; }
public PaymentController(IEmployeeReprository student, IWebHostEnvironment hostingEnvironment, IPayment payment) { this._student = student; this._hostingEnvironment = hostingEnvironment; this._payment = payment; }
public GuarantorController(IGuarantorRepo guarantorRepo, IEmployeeReprository employeeReprository, IWebHostEnvironment hostingEnv) { _guarantorRepo = guarantorRepo; _employeeReprository = employeeReprository; this.hostingEnv = hostingEnv; }
public StudentBatchController(IProgrammes programmes, IEmployeeReprository students) { this._programmes = programmes; this._students = students; }
public EmploymentController(IEmployeeReprository student, IWebHostEnvironment hostingEnvironment, IManageEmployment manageEmployment) { this._student = student; this._hostingEnvironment = hostingEnvironment; this._manageEmployment = manageEmployment; }