Example #1
0
 public FavoriteJobPostingsController(ICandidateFavoriteJobPostingsService candidateFavoriteJobPostingsService, IAccountTypeService accountTypeService, IJobPostingsService jobPostingsService, UserManager <ApplicationUser> userManager, IUserInfoService userInfoService)
 {
     this.candidateFavoriteJobPostingsService = candidateFavoriteJobPostingsService;
     this.accountTypeService = accountTypeService;
     this.jobPostingsService = jobPostingsService;
     this.userManager        = userManager;
     this.userInfoService    = userInfoService;
 }
Example #2
0
        public ApplyEmailController(IJobPostingsService jobPostingsService, IAppLogService appLogService, IEmailTemplateService emailTemplateService, IEmailMessenger emailMessenger, IUserService userService)
        {
            _jobPostingsService = jobPostingsService;
            _appLogService = appLogService;
            _emailMessenger = emailMessenger;
            _emailTemplateService = emailTemplateService;
            _userService = userService;

        }
Example #3
0
 public CategoryController(ICategoriesService categoriesService, IAccountTypeService accountTypeService, UserManager <ApplicationUser> userManager, IUserInfoService userInfoService, ICompanyInfoService companyInfoService, IJobPostingsService jobPostingsService)
 {
     this.categoriesService  = categoriesService;
     this.accountTypeService = accountTypeService;
     this.userManager        = userManager;
     this.userInfoService    = userInfoService;
     this.companyInfoService = companyInfoService;
     this.jobPostingsService = jobPostingsService;
 }
Example #4
0
 public JobPostingsController(IJobPostingsService jobPostingService, UserManager <ApplicationUser> userManager, IAccountTypeService accountTypeService, ICategoriesService categoriesService, ICompanyInfoService companyInfoService, ICitiesService citiesService, ICandidatesService candidatesService, IUserInfoService userInfoService, IReportsJobPostingService reportsJobPostingService)
 {
     this.jobPostingService        = jobPostingService;
     this.userManager              = userManager;
     this.accountTypeService       = accountTypeService;
     this.categoriesService        = categoriesService;
     this.companyInfoService       = companyInfoService;
     this.citiesService            = citiesService;
     this.candidatesService        = candidatesService;
     this.userInfoService          = userInfoService;
     this.reportsJobPostingService = reportsJobPostingService;
 }
 public DashboardController(ISettingsService settingsService, IReportsJobPostingService reportsJobPostingService, IReportsCompanyProfileService reportsCompanyProfileService, ICompanyProfileService companyProfileService, IReportsCandidateProfileService reportsCandidateProfileService, ICompanyInfoService companyInfoService, IJobPostingsService jobPostingsService, IUserInfoService userInfoService, ICandidatesService candidatesService, IAccountTypeService accountTypeService, ICandidateProfileService candidateProfileService, ICandidateFavoriteJobPostingsService favoriteJobPostingsService)
 {
     this.settingsService                = settingsService;
     this.reportsJobPostingService       = reportsJobPostingService;
     this.reportsCompanyProfileService   = reportsCompanyProfileService;
     this.companyProfileService          = companyProfileService;
     this.reportsCandidateProfileService = reportsCandidateProfileService;
     this.companyInfoService             = companyInfoService;
     this.jobPostingsService             = jobPostingsService;
     this.userInfoService                = userInfoService;
     this.candidatesService              = candidatesService;
     this.accountTypeService             = accountTypeService;
     this.candidateProfileService        = candidateProfileService;
     this.favoriteJobPostingsService     = favoriteJobPostingsService;
 }