public JobController(IJobPostHandler _jobpastHandler, IHomeHandler _homeHandler, IUserProfileHandler _userProfileHandler, ISearchJobHandler _searchJobHandler) { jobpastHandler = _jobpastHandler; homeHandler = _homeHandler; searchJobHandler = _searchJobHandler; userProfileHandler = _userProfileHandler; }
public JobSeekerManagementController(IJobPostHandler _jobpastHandler, IHomeHandler _homeHandler, IUserProfileHandler _userProfileHandler, IHostingEnvironment _hostingEnvironment) { userProfileHandler = _userProfileHandler; jobpastHandler = _jobpastHandler; homeHandler = _homeHandler; hostingEnviroment = _hostingEnvironment; }
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"]; }
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"]; }