public Education(IEducationService educationService, ILogger <Education> logger, IHttpContextAccessor accessor)
 {
     this.educationService = educationService;
     this.logger           = logger;
     this.accessor         = accessor;
     this.userName         = this.accessor.HttpContext.User.Identity.Name;
 }
 public StudentController(IStudentService studentService, ISubjectService subjectService, IGroupService groupService, IEducationService educationService)
 {
     this.studentService   = studentService;
     this.subjectService   = subjectService;
     this.groupService     = groupService;
     this.educationService = educationService;
 }
        /// <summary>
        /// To delete a particular jobseeker object
        /// </summary>
        /// <param name="id">EducationId</param>
        public void Delete(string id)
        {
            IEducationService <Education> jobSeekerEducationService = ServiceFactory.GetJobSeekerEducation();
            var jobSeekerEducationObj = jobSeekerEducationService.GetById(id);

            jobSeekerEducationService.Delete(jobSeekerEducationObj);
        }
Beispiel #4
0
 public EducationController(IEducationService educationService, IDropDownList dropDownList, IOops oops, IMapper mapper)
 {
     _educationService = educationService;
     _dropDownList     = dropDownList;
     _oops             = oops;
     _mapper           = mapper;
 }
Beispiel #5
0
 public BaseController(IEducationService educationService, ILangaugeService langaugeService, IMapper mapper, ICertificateService certificateService)
 {
     _educationService   = educationService;
     _mapper             = mapper;
     _langaugeService    = langaugeService;
     _certificateService = certificateService;
 }
Beispiel #6
0
 public HrService(
     IStudentService studentService, IResumeService resumeService, IUserInfoService userInfoService,
     IStreamService streamService, ISummaryService summaryService,
     ISkillService skillService, IForeignLanguageService languageService, IEducationService educationService,
     ICourseService courseService, ICertificateService certificateService, IExamService examService,
     IWorkExperienceService workExperienceService, IPortfolioService portfolioService, IMilitaryStatusService militaryStatusService,
     IRecommendationService recommendationService, IAdditionalInfoService additionalInfoService
     )
 {
     _userInfoService       = userInfoService;
     _studentService        = studentService;
     _resumeService         = resumeService;
     _streamService         = streamService;
     _summaryService        = summaryService;
     _skillService          = skillService;
     _languageService       = languageService;
     _educationService      = educationService;
     _courseService         = courseService;
     _certificateService    = certificateService;
     _examService           = examService;
     _workExperienceService = workExperienceService;
     _portfolioService      = portfolioService;
     _militaryStatusService = militaryStatusService;
     _additionalInfoService = additionalInfoService;
     _recommendationService = recommendationService;
 }
 public EducationController(IEducationService educationService, ISystemLogService systemLogService) : base(systemLogService)
 {
     educationService.InitialiseIValidationDictionary(
         new ModelStateWrapper(ModelState));
     _educationService = educationService;
     IService          = educationService;
 }
Beispiel #8
0
 public AuthController(IUserService userService,
                       INationalityService nationalityService,
                       IEducationService educationService,
                       IReligionService religionService,
                       IWorkService workService,
                       IGenderService genderService,
                       IDegreeService degreeService,
                       IConfirmedUsersService confirmedUserService,
                       IUserManagerService userManagerService,
                       IMapper mapper,
                       ILoggerService <AuthController> loggerService,
                       IAuthService AuthService,
                       IStringLocalizer <AuthenticationErrors> resourceForErrors)
 {
     _AuthService          = AuthService;
     _userService          = userService;
     _nationalityService   = nationalityService;
     _religionService      = religionService;
     _degreeService        = degreeService;
     _workService          = workService;
     _educationService     = educationService;
     _genderService        = genderService;
     _confirmedUserService = confirmedUserService;
     _mapper             = mapper;
     _userManagerService = userManagerService;
     _loggerService      = loggerService;
     _resourceForErrors  = resourceForErrors;
 }
Beispiel #9
0
 public EducationController(ILocalizedEnitityHelperService localizedEnitityHelperService,
                            IEducationService educationService,
                            ILanguageWebApi languageWebApi)
 {
     _localizedEnitityHelperService = localizedEnitityHelperService;
     _educationService = educationService;
     _languageWebApi   = languageWebApi;
 }
 public AdminResumeController(IResumepageService resumepageService, IHomepageService homepageService, IEducationService educationService, ISkillsService skillsService, IExperienceService experienceService)
 {
     _resumepageService = resumepageService;
     _homepageService   = homepageService;
     _educationService  = educationService;
     _experienceService = experienceService;
     _skillsService     = skillsService;
 }
Beispiel #11
0
 public AdminController(IEducationService educationService, ICertificateService certificateService, IComputerTechnologyService computerTechnologyService, IWorkExperienceService workExperienceService, ILangaugeService langaugeService, IMapper mapper)
     : base(educationService, langaugeService, mapper, certificateService)
 {
     _computerTechnologyService = computerTechnologyService;
     _workExperienceService     = workExperienceService;
     _mapper           = mapper;
     _educationService = educationService;
 }
Beispiel #12
0
 public DashboardController(IEducationService educationService, IWorkExperienceService workExperienceService,
                            IComputerTechnologyService computerTechnologyService, ILangaugeService miscellaneousInfoService, IMapper mapper, ICertificateService certificateService)
     : base(educationService, miscellaneousInfoService, mapper, certificateService)
 {
     _mapper = mapper;
     _computerTechnologyService = computerTechnologyService;
     _workExperienceService     = workExperienceService;
 }
Beispiel #13
0
 public CompanyController(ICompanyService companyService, ITownService townService, ICityService cityService, IPerfectionService perfectionService, IJobAdvertService jobAdvertService, IEducationService educationService)
 {
     _companyService    = companyService;
     _townService       = townService;
     _cityService       = cityService;
     _perfectionService = perfectionService;
     _jobAdvertService  = jobAdvertService;
     _educationService  = educationService;
 }
Beispiel #14
0
 public AdminCRUDController(IMapper mapper, IEducationService educationService, IWorkExperienceService workExperienceService,
                            IComputerTechnologyService computerTechnologyService, ILangaugeService langaugeService, ICertificateService certificateService)
 {
     _mapper                    = mapper;
     _educationService          = educationService;
     _workExperienceService     = workExperienceService;
     _computerTechnologyService = computerTechnologyService;
     _langaugeService           = langaugeService;
     _certificateService        = certificateService;
 }
Beispiel #15
0
 public ScholarshipController()
 {
     this._mainScholarshipService  = new MainScholarshipService();
     this._youthScholarshipService = new YouthScholarshipService();
     this._experienceService       = new ExperienceService();
     this._educationService        = new EducationService();
     this._trainingService         = new TrainingService();
     this._leadershipService       = new LeaderShipService();
     this._publicationService      = new PublicationService();
 }
Beispiel #16
0
 public PersonController(IPersonService personService, IEducationService educationService, IPassportService passportService,
                         IInsuranceService insuranceService, IPositionService positionService, IPersonPositionService personPositionService, IMapper mapper)
 {
     this._personService         = personService;
     this._educationService      = educationService;
     this._insuranceService      = insuranceService;
     this._passportService       = passportService;
     this._positionService       = positionService;
     this._personPositionService = personPositionService;
     this._mapper = mapper;
 }
Beispiel #17
0
 public HomeController(ISkillService skillService, IHomePageSliderService homePageSliderService, IMessageService messageService, IEducationService educationService, IExperienceService experienceService, IInterestedService interestedService, IArticleService articleService, ICategoryService categoryService, IAdminService adminService)
 {
     _skillService          = skillService;
     _homePageSliderService = homePageSliderService;
     _messageService        = messageService;
     _educationService      = educationService;
     _experienceService     = experienceService;
     _interestedService     = interestedService;
     _articleService        = articleService;
     _categoryService       = categoryService;
     _adminService          = adminService;
 }
Beispiel #18
0
 public UserService(IRepositoryWrapper repoWrapper, UserManager <User> userManager, IMapper mapper, IWorkService workService,
                    IEducationService educationService, IUserBlobStorageRepository userBlobStorage, IWebHostEnvironment env, IUserManagerService userManagerService,
                    IConfirmedUsersService confirmedUsersService)
 {
     _repoWrapper      = repoWrapper;
     _userManager      = userManager;
     _mapper           = mapper;
     _workService      = workService;
     _educationService = educationService;
     _userBlobStorage  = userBlobStorage;
     _env = env;
     _userManagerService    = userManagerService;
     _confirmedUsersService = confirmedUsersService;
 }
        public static IEducationService <Education> GetJobSeekerEducation()
        {
            IEducationService <SkillSmart.Dto.Education> serviceObj = null;

            switch (sectionHandler.ConnectionStringName)
            {
            case DataBaseType.SKILLSMART_MONGO_DB: serviceObj = new EducationService(DatabaseFactory.CreateMongoDatabase());
                break;

            default: serviceObj = new EducationService(DatabaseFactory.CreateMongoDatabase());
                break;
            }
            return(serviceObj);
        }
Beispiel #20
0
        public CorporationController(ICorporationService corporationService, ICorporationOwnerService corporationOwnerService,
                                     ICorporationTeacherService corporationTeacherService, ICorporationEmployeeService corporationEmployeeService, ICorporationSchoolManagerService corporationSchoolManagerService,
                                     ICorporationAddressService corporationAddressService, IClassroomService classroomService, IEducationService educationService, ICorporationStudentService corporationStudentService)
        {
            _corporationService         = corporationService;
            _corporationOwnerService    = corporationOwnerService;
            _corporationTeacherService  = corporationTeacherService;
            _corporationEmployeeService = corporationEmployeeService;

            _corporationSchoolManagerService = corporationSchoolManagerService;
            _corporationAddressService       = corporationAddressService;
            _classroomService = classroomService;
            _educationService = educationService;

            _corporationStudentService = corporationStudentService;
        }
Beispiel #21
0
 public AdminUserController()
 {
     ViewBag.CurrentNode           = "AdminMember";
     this._userService             = new UserService();
     this._mainScholarshipService  = new MainScholarshipService();
     this._youthScholarshipService = new YouthScholarshipService();
     this._experienceService       = new ExperienceService();
     this._educationService        = new EducationService();
     this._trainingService         = new TrainingService();
     this._leadershipService       = new LeaderShipService();
     this._publicationService      = new PublicationService();
     this._userSubmissionService   = new UserSubmissionService();
     this._mailingAddressService   = new MailingAddressService();
     this._paymentService          = new PaymentService();
     this._logisticService         = new LogisticSheduleService();
 }
Beispiel #22
0
 public ImportService(IPersonService personService,
                      IWorkHistoryService workHistoryService, IEducationService educationService,
                      ICategoryService categoryService, ITechnologyService technologyService,
                      ISkillService skillService, IProjectService projectService, IProjectTechnologyService projectTechnologyService,
                      ICertificateService certificateService)
 {
     this._personService            = personService;
     this._workHistoryService       = workHistoryService;
     this._educationService         = educationService;
     this._categoryService          = categoryService;
     this._technologyService        = technologyService;
     this._skillService             = skillService;
     this._projectService           = projectService;
     this._projectTechnologyService = projectTechnologyService;
     this._certificateService       = certificateService;
 }
Beispiel #23
0
 public ImportManager(IResumeService resService,
                      IEducationService educationService,
                      ISkillService skillService,
                      IExperienceService werkExperienceService,
                      ILanguageWebApi languageWebApi,
                      ILocalizedEntityWebApi localizedEntityWebApi,
                      ILocalizedEnitityHelperService localizedEntityHelperService)
 {
     _resService                   = resService;
     _educationService             = educationService;
     _skillService                 = skillService;
     _workExperienceService        = werkExperienceService;
     _languageWebApi               = languageWebApi;
     _localizedEntityWebApi        = localizedEntityWebApi;
     _localizedEntityHelperService = localizedEntityHelperService;
 }
 public ExportFileService(IWebHostEnvironment webHostEnvironment,
                          IOptions <AppSettings> appSettings,
                          IPersonService personService,
                          ISkillService skillService,
                          IWorkHistoryService workHistoryService,
                          IEducationService educationService,
                          ICertificateService certificateService,
                          IProjectService projectService)
 {
     this._webHostEnvironment = webHostEnvironment;
     this._appSettings        = appSettings.Value;
     this._personService      = personService;
     this._skillService       = skillService;
     this._workHistoryService = workHistoryService;
     this._educationService   = educationService;
     this._certificateService = certificateService;
     this._projectService     = projectService;
 }
Beispiel #25
0
 public ImportManager(IResumeService resService,
                      IEducationService educationService,
                      ISkillService skillService,
                      IExperienceService werkExperienceService,
                      IImportExcelService importExpenseExcelService,
                      ILanguageService languageService,
                      //IIdentityService identityService,
                      ILocalizedEntityService localizedEntityService)
 {
     _resService                = resService;
     _educationService          = educationService;
     _skillService              = skillService;
     _workExperienceService     = werkExperienceService;
     _importExpenseExcelService = importExpenseExcelService;
     _languageService           = languageService;
     //_identityService = identityService;
     _localizedEntityService = localizedEntityService;
 }
 public HomeController(ILoggingService loggingService, IUnitOfWorkManager unitOfWorkManager,
                       IActivityService activityService, IMembershipService membershipService,
                       ITopicService topicService, ILocalizationService localizationService, IRoleService roleService,
                       ISettingsService settingsService, ICategoryService categoryService, IHospitalFeeService hospitalFeeService,
                       IDoctorService doctorService, IRecruitmentService recruitmentService, IMedicalPackageService medicalPackageService,
                       IEducationService educationService, IBannerService bannerService)
     : base(loggingService, unitOfWorkManager, membershipService, localizationService, roleService,
            settingsService)
 {
     _topicService          = topicService;
     _categoryService       = categoryService;
     _activityService       = activityService;
     _hospitalFeeService    = hospitalFeeService;
     _doctorService         = doctorService;
     _recruitmentService    = recruitmentService;
     _medicalPackageService = medicalPackageService;
     _educationService      = educationService;
     _bannerService         = bannerService;
 }
Beispiel #27
0
 public EducationController(IUserService IUserService, IEducationService IEducationService, IClassService IClassService, ICollegeService ICollegeService, IDisciplineService IDisciplineService,
                            IEducationCategoryService IEducationCategoryService, ISpecializationService ISpecializationService, IUniversityService IUniversityService, IEducationCategoryUniversityBoardMappingService IEducationCategoryUniversityBoardMappingService)
 {
     this._IUserService      = IUserService;
     this._IEducationService = IEducationService;
     _educationDetails       = new EmployeeEducationDetail();
     this._IClassService     = IClassService;
     _class = new Master_Class();
     this._ICollegeService = ICollegeService;
     _college = new Master_College();
     this._IDisciplineService = IDisciplineService;
     _discipline = new Master_Discipline();
     this._IEducationCategoryService = IEducationCategoryService;
     _educationCategory           = new Master_EducationCategory();
     this._ISpecializationService = ISpecializationService;
     _specialization          = new Master_Specialization();
     this._IUniversityService = IUniversityService;
     _university = new Master_University();
     this._IEducationCategoryUniversityBoardMappingService = IEducationCategoryUniversityBoardMappingService;
     _educationCategoryUniversityBoardMapping = new EducationCategoryUniversityBoardMapping();
 }
Beispiel #28
0
 public EmployeeController(IEmployeeService employeeService,
                           ICountryService countryService,
                           IEducationService educationService,
                           IEthnicGroupService ethnicGroupService,
                           IReligionService religionService,
                           ISkillService skillService,
                           IDepartmentService departmentService,
                           IRoleService roleService,
                           IUserService userService
                           )
 {
     this._employeeService    = employeeService;
     this._countryService     = countryService;
     this._educationService   = educationService;
     this._ethnicGroupService = ethnicGroupService;
     this._religionService    = religionService;
     this._skillService       = skillService;
     this._departmentService  = departmentService;
     this._userService        = userService;
     this._roleService        = roleService;
 }
Beispiel #29
0
 public JobSeekerController(IUserService userService, IJobSeekerService jobSeekerService, IJobAdvertService jobAdvertService,
                            IProvinceService provinceService, ICityService cityService, IJobCategoryService jobCategoryService, IWorkExperienceService workExperienceService,
                            IEducationService educationService, ISkillsService skillService, ILanguageService languageService, IWebHostEnvironment webHostEnvironment,
                            ICompanyService companyService, IJobTypeService jobTypeService, IAttachmentService attachmentService, IPDFGenerator pdfGenerator)
 {
     _jobSeekerService       = jobSeekerService;
     _jobAdvertService       = jobAdvertService;
     _provinceService        = provinceService;
     _cityService            = cityService;
     this.attachmentService  = attachmentService;
     _jobAdvertService       = jobAdvertService;
     _workExperienceService  = workExperienceService;
     _jobCategoryService     = jobCategoryService;
     this.educationService   = educationService;
     this.languageService    = languageService;
     this.skillService       = skillService;
     this.webHostEnvironment = webHostEnvironment;
     _companyService         = companyService;
     _jobTypeService         = jobTypeService;
     CV          = "/hustlersAttachments/cv/";
     Transcripts = "/hustlersAttachments/academicRecord/";
     ID          = "/hustlersAttachments/id/";
 }
Beispiel #30
0
 public DropDownList(IAccountService accountService,
                     IEducationService educationService,
                     ISubdivisionsService subdivisionsService,
                     IPositionService positionService,
                     IDormitoryService dormitoryService,
                     IDepartmentalService departmentalService,
                     IQualificationService scientificService,
                     ISocialActivityService socialActivity,
                     IPrivilegesService privilegesService,
                     IHobbyService hobbyService,
                     ITravelService travelService,
                     IWellnessService wellnessService,
                     ITourService tourService,
                     ICulturalService culturalService,
                     IActivitiesService activitiesService,
                     IAwardService awardService,
                     IMaterialAidService materialAidService)
 {
     _accountService      = accountService;
     _educationService    = educationService;
     _subdivisionsService = subdivisionsService;
     _positionService     = positionService;
     _dormitoryService    = dormitoryService;
     _departmentalService = departmentalService;
     _scientificService   = scientificService;
     _socialActivity      = socialActivity;
     _privilegesService   = privilegesService;
     _hobbyService        = hobbyService;
     _travelService       = travelService;
     _wellnessService     = wellnessService;
     _tourService         = tourService;
     _culturalService     = culturalService;
     _activitiesService   = activitiesService;
     _awardService        = awardService;
     _materialAidService  = materialAidService;
 }
 public EducationController(IEducationService educationService)
 {
     _educationService = educationService;
 }