Пример #1
0
 public BaseController(ApplicationDbContext context, UserManager <UserProfileModel> userManager, RoleManager <ApplicationRoleModel> roleManager, IHelper helper, IGuarantor guarantor, IEmployer employer)
 {
     _context     = context;
     _userManager = userManager;
     _roleManager = roleManager;
     _helper      = helper;
     _guarantor   = guarantor;
     _employer    = employer;
 }
Пример #2
0
 public AdminService(IUser user, ApplicationDbContext context, UserManager <UserProfileModel> userManager, IEmployer employer, IGuarantor guarantor, IHelper helper)
 {
     _user        = user;
     _context     = context;
     _userManager = userManager;
     _employer    = employer;
     _guarantor   = guarantor;
     _helper      = helper;
 }
Пример #3
0
 public HomeController(IStudents studentRepo, IWebHostEnvironment webHostEnvironment, IGuarantor guarantorRepo, IProgram programRepo, IProject projectRepo, IBatch batchRepo, IStudentBatch studentBatchRepo)
 {
     _student                = studentRepo;
     _batchRepo              = batchRepo;
     _programRepo            = programRepo;
     _projectRepo            = projectRepo;
     _guarantorRepo          = guarantorRepo;
     _studentBatchRepo       = studentBatchRepo;
     this.webHostEnvironment = webHostEnvironment;
     this.guarantorRepo      = guarantorRepo;
 }
Пример #4
0
 public GuarantorController(IGuarantor guarantor) : base(guarantor)
 {
 }
Пример #5
0
 public AdminController(ApplicationDbContext context, UserManager <UserProfileModel> userManager, RoleManager <ApplicationRoleModel> roleManager, IHelper helper, IGuarantor guarantor, IEmployer employer, ILogger <AdminController> logger)
     : base(context, userManager, roleManager, helper, guarantor, employer)
 {
     _logger = logger;
 }
Пример #6
0
 public GuarantorController(IGuarantor guarantorRepository, IStudentGuarantor studentGuarantor)
 {
     _guarantorRepository = guarantorRepository;
     _studentGuarantor    = studentGuarantor;
 }
Пример #7
0
 public BaseController(IGuarantor guarantor)
 {
     _guarantor = guarantor;
 }
Пример #8
0
 public HomeController(IStudents studentRepo, IWebHostEnvironment webHostEnvironment, IGuarantor guarantorRepo)
 {
     _student = studentRepo;
     this.webHostEnvironment = webHostEnvironment;
     this.guarantorRepo      = guarantorRepo;
 }
Пример #9
0
 public GuarantorController(IGuarantor guarantorRepo)
 {
     _guarantor = guarantorRepo;
 }