Ejemplo n.º 1
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 JobApplicationsController(UserManager <ApplicationUser> userManager, IJobApplicationService jobApplicationService, IJobOffersService jobOffersService, ICandidatesService candidatesService, IEmployersService employersService, IDocumentsService documentsService, IJobApplicationStatusesService jobApplicationStatusesService)
 {
     this.userManager                   = userManager;
     this.jobApplicationService         = jobApplicationService;
     this.jobOffersService              = jobOffersService;
     this.candidatesService             = candidatesService;
     this.employersService              = employersService;
     this.documentsService              = documentsService;
     this.jobApplicationStatusesService = jobApplicationStatusesService;
 }
Ejemplo n.º 3
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;
 }
Ejemplo n.º 4
0
        public HomeController(
            UserManager <SystemUser> userManager,
            IParentsService parentsService,
            ICandidatesService candidatesService,
            ISchoolsService schoolsService)
        {
            this.userManager       = userManager;
            this.parentsService    = parentsService;
            this.candidatesService = candidatesService;
            this.schoolsService    = schoolsService;

            this.userHasParents = false;
        }
Ejemplo n.º 5
0
 public ParentController(
     IParentsService parentsService,
     IDistrictsService districtsService,
     IAddressesService addressesService,
     ICalculatorService calculatorService,
     ICandidatesService candidatesService)
 {
     this.parentsService    = parentsService;
     this.districtsService  = districtsService;
     this.addressesService  = addressesService;
     this.calculatorService = calculatorService;
     this.candidatesService = candidatesService;
 }
Ejemplo n.º 6
0
 public HomeController(
     ISchoolsService schoolsService,
     IDistrictsService districtsService,
     ICloudinaryService cloudinaryService,
     ICandidatesService candidatesService,
     UserManager <SystemUser> userManager)
 {
     this.schoolsService    = schoolsService;
     this.districtsService  = districtsService;
     this.userManager       = userManager;
     this.cloudinaryService = cloudinaryService;
     this.candidatesService = candidatesService;
 }
Ejemplo n.º 7
0
 public DashboardController(
     IApplicationUsersService applicationUsersService,
     ICandidatesService candidatesService,
     IEmployersService employersService,
     IJobOffersService jobOffersService,
     IJobApplicationService jobApplicationService)
 {
     this.applicationUsersService = applicationUsersService;
     this.candidatesService       = candidatesService;
     this.employersService        = employersService;
     this.jobOffersService        = jobOffersService;
     this.jobApplicationService   = jobApplicationService;
 }
Ejemplo n.º 8
0
 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;
 }
Ejemplo n.º 9
0
        public StateService(IRepository <ElectionStates> StatesRepo,
                            UserManager <ApplicationUser> userManager,
                            IDESAlgorithm desService,
                            IHttpContextAccessor httpContextAccessor,
                            ICandidatesService candidateService,
                            IRepository <Votes> votesRepo,
                            IRepository <DecryptedVotes> decryptedVotesRepo
                            )
        {
            _votesRepo = votesRepo;

            _candidateService    = candidateService;
            _desService          = desService;
            _statesRepo          = StatesRepo;
            _userManager         = userManager;
            _httpContextAccessor = httpContextAccessor;
            _decryptedVotesRepo  = decryptedVotesRepo;
        }
Ejemplo n.º 10
0
 public CandidateController(
     UserManager <SystemUser> userManager,
     IParentsService parentsService,
     ICandidatesService candidatesService,
     ISchoolsService schoolsService,
     ICloudinaryService cloudinaryService,
     ICalculatorService calculatorService,
     ICriteriasService criteriasService,
     IAdminService adminService)
 {
     this.userManager       = userManager;
     this.parentsService    = parentsService;
     this.candidatesService = candidatesService;
     this.calculatorService = calculatorService;
     this.schoolsService    = schoolsService;
     this.cloudinaryService = cloudinaryService;
     this.criteriasService  = criteriasService;
     this.adminService      = adminService;
 }
Ejemplo n.º 11
0
        public DocumentsController(
            IDocumentsService documentsService,
            ICandidatesService candidatesService,
            IFileExtensionsService fileExtensionsService,
            IDocumentCategoriesService documentCategoriesService,
            IJobApplicationService jobApplicationService,
            IMimeMappingService mimeMappingService,
            UserManager <ApplicationUser> userManager)
        {
            this.documentsService          = documentsService;
            this.candidatesService         = candidatesService;
            this.fileExtensionsService     = fileExtensionsService;
            this.documentCategoriesService = documentCategoriesService;
            this.jobApplicationService     = jobApplicationService;
            this.mimeMappingService        = mimeMappingService;
            this.userManager = userManager;

            this.allowedExtensions = this.fileExtensionsService.GetAll();
            this.allowedCategories = this.documentCategoriesService.GetAll <CategoriesDropDownViewModel>();
        }
Ejemplo n.º 12
0
 public CandidatesController(
     UserManager <ApplicationUser> userManager,
     ICandidatesService candidatesService,
     IFileExtensionsService fileExtensionsService,
     ILanguagesService languagesService,
     ISkillsService skillsService,
     IJobOffersService jobOffersService,
     IEmployersService employersService)
 {
     this.userManager           = userManager;
     this.candidatesService     = candidatesService;
     this.fileExtensionsService = fileExtensionsService;
     this.languagesService      = languagesService;
     this.skillsService         = skillsService;
     this.jobOffersService      = jobOffersService;
     this.employersService      = employersService;
     this.allowedExtensions     = this.fileExtensionsService.GetImageExtensions();
     this.languages             = this.languagesService.GetAll <LanguagesDropDownCheckboxListViewModel>();
     this.skills = this.skillsService.GetAll <SkillsDropDownCheckboxListViewModel>();
 }
Ejemplo n.º 13
0
 public JobMatcherController(IJobsService jobsService, ICandidatesService candidatesService)
 {
     _JobsService       = jobsService ?? throw new ArgumentNullException(nameof(jobsService));
     _CandidatesService = candidatesService ?? throw new ArgumentNullException(nameof(candidatesService));
 }
Ejemplo n.º 14
0
 public SessionController(ICandidatesService candidatesService, IStateService stateService, IUsersService userService)
 {
     _candidatesService = candidatesService;
     _stateService      = stateService;
     _userService       = userService;
 }
 public CentralGovernmentController(IStateService stateService, ICandidatesService candidatesService)
 {
     _stateService      = stateService;
     _candidatesService = candidatesService;
 }
 public CandidatesController(IVotesService votesService, ICandidatesService candidatesService)
 {
     _votesService      = votesService;
     _candidatesService = candidatesService;
 }
Ejemplo n.º 17
0
 public CandidatesController(ICandidatesService candidatesService)
 {
     _candidatesService = candidatesService;
 }
Ejemplo n.º 18
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="logger"></param>
 /// <param name="candidatesService"></param>
 public CandidatesController(ILog logger, ICandidatesService candidatesService) : base(logger)
 {
     _candidatesService = candidatesService;
 }
Ejemplo n.º 19
0
 public CandidatesController(ICandidatesService service, ILog logger)
 {
     _service = service;
     _logger  = logger;
 }