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;
 }
Пример #2
0
 public PaymentController(IEmployeeReprository student, IWebHostEnvironment hostingEnvironment, IPayment payment)
 {
     this._student            = student;
     this._hostingEnvironment = hostingEnvironment;
     this._payment            = payment;
 }
Пример #3
0
 public GuarantorController(IGuarantorRepo guarantorRepo, IEmployeeReprository employeeReprository, IWebHostEnvironment hostingEnv)
 {
     _guarantorRepo       = guarantorRepo;
     _employeeReprository = employeeReprository;
     this.hostingEnv      = hostingEnv;
 }
Пример #4
0
 public StudentBatchController(IProgrammes programmes, IEmployeeReprository students)
 {
     this._programmes = programmes;
     this._students   = students;
 }
Пример #5
0
 public EmploymentController(IEmployeeReprository student, IWebHostEnvironment hostingEnvironment, IManageEmployment manageEmployment)
 {
     this._student            = student;
     this._hostingEnvironment = hostingEnvironment;
     this._manageEmployment   = manageEmployment;
 }