public SchedulesController(ISchedulesPage schedulesPage,
                            ISchedulesUsersPage schedulesUsersPage,
                            IWebHostEnvironment environment,
                            UserManager <ApplicationUser> userManager,
                            RecruitmentPortalDbContext dbContext)
 {
     _schedulesPage      = schedulesPage;
     _dbContext          = dbContext;
     _environment        = environment;
     _userManager        = userManager;
     _schedulesUsersPage = schedulesUsersPage;
 }
Пример #2
0
 public JobApplicationController(IJobApplicationPage jobApplicationPage,
                                 RecruitmentPortalDbContext dbContext,
                                 ISchedulesPage schedulesPage, IDataProtectionProvider dataProtectionProvider,
                                 DataProtectionPurposeStrings dataProtectionPurposeStrings,
                                 ISchedulesUsersPage schedulesUsersPage,
                                 ICandidatePage candidatePage)
 {
     _jobApplicationPage = jobApplicationPage;
     _schedulesPage      = schedulesPage;
     _schedulesUsersPage = schedulesUsersPage;
     _candidatePage      = candidatePage;
     _dbContext          = dbContext;
     _Protector          = dataProtectionProvider.CreateProtector(dataProtectionPurposeStrings.JobAppDetailIdRouteValue);
 }
Пример #3
0
 public HomeController(ICandidatePage candidatePage,
                       IJobApplicationPage jobApplicationPage,
                       ISchedulesPage schedulesPage,
                       UserManager <ApplicationUser> userManager,
                       ILogger <HomeController> logger,
                       RecruitmentPortalDbContext dbContext,
                       IDataProtectionProvider dataProtectionProvider,
                       DataProtectionPurposeStrings dataProtectionPurposeStrings,
                       IJobPostPage jobPostPage)
 {
     _logger             = logger;
     _dbContext          = dbContext;
     _jobApplicationPage = jobApplicationPage;
     _schedulesPage      = schedulesPage;
     _candidatePage      = candidatePage;
     _userManager        = userManager;
     _jobPostPage        = jobPostPage;
     _Protector          = dataProtectionProvider.CreateProtector(dataProtectionPurposeStrings.JobPostIdRouteValue);
 }
 public InterviewerController(UserManager <ApplicationUser> userManager, RecruitmentPortalDbContext dbContext, ISchedulesPage schedulesPage)
 {
     _dbContext     = dbContext;
     _userManager   = userManager;
     _schedulesPage = schedulesPage;
 }