public JobController(IJobPostHandler _jobpastHandler, IHomeHandler _homeHandler, IUserProfileHandler _userProfileHandler, ISearchJobHandler _searchJobHandler)
 {
     jobpastHandler     = _jobpastHandler;
     homeHandler        = _homeHandler;
     searchJobHandler   = _searchJobHandler;
     userProfileHandler = _userProfileHandler;
 }
Пример #2
0
 public JobSeekerManagementController(IJobPostHandler _jobpastHandler, IHomeHandler _homeHandler, IUserProfileHandler _userProfileHandler, IHostingEnvironment _hostingEnvironment)
 {
     userProfileHandler = _userProfileHandler;
     jobpastHandler     = _jobpastHandler;
     homeHandler        = _homeHandler;
     hostingEnviroment  = _hostingEnvironment;
 }
Пример #3
0
 public AuthController(IEMailHandler _emailHandler, IConfiguration _config, IAuthHandler _authHandler,
                       IHostingEnvironment _hostingEnvironment, IUserProfileHandler _userProfileHandler)
 {
     authHandler        = _authHandler;
     hostingEnviroment  = _hostingEnvironment;
     emailHandler       = _emailHandler;
     userProfileHandler = _userProfileHandler;
     config             = _config;
     URLprotocol        = config["URLprotocol"];
 }
Пример #4
0
 public JobController(IJobPostHandler _jobpastHandler, IHomeHandler _homeHandler, IConfiguration _config,
                      IHttpContextAccessor httpContextAccessor, IUserProfileHandler _userProfileHandler, ISearchJobHandler _searchJobHandler)
 {
     jobpastHandler       = _jobpastHandler;
     homeHandler          = _homeHandler;
     searchJobHandler     = _searchJobHandler;
     userProfileHandler   = _userProfileHandler;
     config               = _config;
     _httpContextAccessor = httpContextAccessor;
     URLprotocol          = config["URLprotocol"];
 }