Beispiel #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;
 }
 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;
 }