Esempio n. 1
0
 public CandidateProfileController(ICandidateProfileService CandidateProfileService,
                                   ILog <CandidateProfileController> logger,
                                   IMapper mapper) : base(logger)
 {
     _CandidateProfileService = CandidateProfileService;
     _mapper = mapper;
 }
Esempio n. 2
0
 public CandidateProfileController(ICandidateProfileService candidateProfileService, UserManager <ApplicationUser> userManager, IUserInfoService userInfoService, ICandidatesService candidatesService, IAccountTypeService accountTypeService)
 {
     this.candidateProfileService = candidateProfileService;
     this.userManager             = userManager;
     this.userInfoService         = userInfoService;
     this.candidatesService       = candidatesService;
     this.accountTypeService      = accountTypeService;
 }
 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;
 }