public UserService(IEducationRepository educationRepository, IModelFactory modelFactory, IFileRepository fileRepository, ISkillRepository skillRepository,
     IProjectRepository projectRepository, IExperienceRepository experienceRepository)
 {
     _educationRepository = educationRepository;
     _modelFactory = modelFactory;
     _fileRepository = fileRepository;
     _skillRepository = skillRepository;
     _projectRepository = projectRepository;
     _experienceRepository = experienceRepository;
 }
Exemplo n.º 2
0
 public UsersLogic(
     IUserRepository userRepository, 
     IAddressRepository addressRepository, 
     IEducationRepository educationRepository, 
     IMediaRepository mediaRepository)
 {
     _userRepository = userRepository;
     _addressRepository = addressRepository;
     _educationRepository = educationRepository;
     _mediaRepository = mediaRepository;
 }
 public AIMAdminUnitOfWork(IAIM_DBContext context,
     IApplicantQuestionAnswerRepository applicantQuestionAnswerRepository,
     IApplicantRepository applicantRepository,
     IApplicationRepository applicationRepository,
     IAspNetRoleRepository aspNetRoleRepository,
     IAspNetUserClaimRepository aspNetUserClaimRepository,
     IAspNetUserLoginRepository aspNetUserLoginRepository,
     IAspNetUserRepository aspNetUserRepository,
     IEducationRepository educationRepository,
     IEmployeeRepository employeeRepository,
     IHourRepository hourRepositor,
     IInterviewQuestionRepository interviewQuestionRepository,
     IJobHistoryRepository jobHistoryRepository,
     IJobRepository jobRepository,
     IOpenJobRepository openJobRepository,
     IPersonalInfoRepository personalInfoRepository,
     IQuestionnaireRepository questionnaireRepository,
     IQuestionRepository questionRepository,
     IReferenceRepository referenceRepository,
     IRegionRepository regionRepository,
     IStoreRepository storeRepository,
     IUserRepository userRepository) :
     base(context as DbContext)
 {
     _applicantQuestionAnswerRepository = applicantQuestionAnswerRepository;
     _applicantRepository = applicantRepository;
     _applicationRepository = applicationRepository;
     _aspNetRoleRepository = aspNetRoleRepository;
     _aspNetUserClaimRepository = aspNetUserClaimRepository;
     _aspNetUserLoginRepository = aspNetUserLoginRepository;
     _aspNetUserRepository = aspNetUserRepository;
     _educationRepository = educationRepository;
     _employeeRepository = employeeRepository;
     _hourRepository = hourRepositor;
     _interviewQuestionRepository = interviewQuestionRepository;
     _jobHistoryRepository = jobHistoryRepository;
     _jobRepository = jobRepository;
     _openJobRepository = openJobRepository;
     _personalInfoRepository = personalInfoRepository;
     _questionnaireRepository = questionnaireRepository;
     _questionRepository = questionRepository;
     _referenceRepository = referenceRepository;
     _regionRepository = regionRepository;
     _storeRepository = storeRepository;
     _userRepository = userRepository;
 }
Exemplo n.º 4
0
 public EducationService(IEducationRepository educationRepository)
 {
     this._educationRepository = educationRepository;
 }
Exemplo n.º 5
0
 public EducationService(IEducationRepository education)
 {
     _education = education;
 }
Exemplo n.º 6
0
 public HomeWorksService(IEducationRepository educationRepository, ILogger <HomeWorksService> logger, IMapper mapper)
 {
     _homeWorkRepository = educationRepository.GetHomeWorkRepository();
     _logger             = logger;
     _mapper             = mapper;
 }
 public EducationController(IEducationRepository educationRepository, UserManager <UserEntity> userManager) : base(userManager)
 {
     _userManager         = userManager;
     _educationRepository = educationRepository;
     PageSubTitle         = "Eğitimler";
 }
Exemplo n.º 8
0
 public EducationService(IEducationRepository educationService)
 {
     educationRepositoryobj = educationService;
 }
 public FillDatabaseController(IEducationRepository educationRepository, ILogger <FillDatabaseController> logger)//
 {
     _educationRepository = educationRepository;
     _logger = logger;
 }
Exemplo n.º 10
0
 public ChartsController(IStudentRepository studentRepo, IAbsenceRepository absenceRepo, ICourseRepository courseRepo, IEducationRepository educationRepo)
 {
     this.studentRepo   = studentRepo;
     this.absenceRepo   = absenceRepo;
     this.courseRepo    = courseRepo;
     this.educationRepo = educationRepo;
 }
Exemplo n.º 11
0
 private void Reset()
 {
     repos       = null;
     Institution = null;
     Credential  = null;
 }
 public JobTitlesController(IEmployeeSubordinatesRepository employeeSubordinatesRepository, IEmployeeSupervisorsRepository employeeSupervisorsRepository, IEmployeeMembershipsRepository employeeMembershipsRepository, IEmployeeSalaryRepository employeeSalaryRepository, IEmployeeJobRepository employeeJobRepository, IEmployeeImmigrationRepository employeeImmigrationRepository, IEmployeeDependantRepository employeeDependantRepository, IEmployeeEmergencyContactRepository employeeEmergencyContactRepository, IEmployeeContactDetailsRepository employeeContactDetailsRepository, IEmployeeRepository employeeRepository, INationalitiesRepository nationalitiesRepository, IMembershipsRepository membershipsRepository, ILanguagesRepository languagesRepository, ILicensesRepository licensesRepository, IEducationRepository educationRepository, ISkillsRepository skillsRepository, IDepartmentRepository departmentRepository, ICompanyBranchRepository companyBranchRepository, ICompanyInformationRepository companyInformationRepository, ICurrenciesRepository currenciesRepository, IJobCategoriesRepository jobCategoriesRepository, IEmploymentStatusRepository employmentStatus, IPayGradesRepository payGradesRepository, IJobTitlesRepository jobTitlesRepository)
 {
     _employeeSubordinatesRepository     = employeeSubordinatesRepository;
     _employeeSupervisorsRepository      = employeeSupervisorsRepository;
     _employeeMembershipsRepository      = employeeMembershipsRepository;
     _employeeSalaryRepository           = employeeSalaryRepository;
     _employeeJobRepository              = employeeJobRepository;
     _employeeImmigrationRepository      = employeeImmigrationRepository;
     _employeeDependantRepository        = employeeDependantRepository;
     _employeeEmergencyContactRepository = employeeEmergencyContactRepository;
     _employeeContactDetailsRepository   = employeeContactDetailsRepository;
     _employeeRepository           = employeeRepository;
     _nationalitiesRepository      = nationalitiesRepository;
     _membershipsRepository        = membershipsRepository;
     _languagesRepository          = languagesRepository;
     _licensesRepository           = licensesRepository;
     _educationRepository          = educationRepository;
     _skillsRepository             = skillsRepository;
     _departmentRepository         = departmentRepository;
     _companyBranchRepository      = companyBranchRepository;
     _companyInformationRepository = companyInformationRepository;
     _currenciesRepository         = currenciesRepository;
     _jobCategoriesRepository      = jobCategoriesRepository;
     _employmentStatus             = employmentStatus;
     _payGradesRepository          = payGradesRepository;
     _jobTitlesRepository          = jobTitlesRepository;
 }
Exemplo n.º 13
0
 public StudentController(IStudentRepository studentRepo, IEducationRepository educationRepo)
 {
     this.studentRepo   = studentRepo;
     this.educationRepo = educationRepo;
 }
 public EducationManager(IEducationRepository educationRepository)
 {
     _educationRepository = educationRepository;
     educationMapping     = new EducationMapping();
 }
Exemplo n.º 15
0
 public EducationService(IEducationRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 16
0
 public EducationService(IEducationRepository educationRepository, IUnitOfWork unitOfWork)
 {
     this._educationRepository = educationRepository;
     this._unitOfWork          = unitOfWork;
 }
Exemplo n.º 17
0
 public EducationDb()
 {
     rep = AppKernel.Get <IEducationRepository>();
 }
Exemplo n.º 18
0
 public GetDataForWarning(IEducationRepository educationRepository, ILogger <GetDataForWarning> logger, IMapper mapper)
 {
     _educationRepository = educationRepository;
     _logger = logger;
     _mapper = mapper;
 }
Exemplo n.º 19
0
 public LecturersService(IEducationRepository educationRepository, ILogger <LecturersService> logger, IMapper mapper)
 {
     _lecturerRepository = educationRepository.GetLecturerRepository();
     _logger             = logger;
     _mapper             = mapper;
 }
Exemplo n.º 20
0
 public AuthService(IResumeRepository resumeRepository, IProjectRepository projectRepository, ISkillRepository skillRepository, IExperienceRepository experienceRepository, IEducationRepository educationRepository)
 {
     _resumeRepository     = resumeRepository;
     _projectRepository    = projectRepository;
     _skillRepository      = skillRepository;
     _experienceRepository = experienceRepository;
     _educationRepository  = educationRepository;
 }
Exemplo n.º 21
0
 public EducationController(IEducationRepository educationRepository)
 {
     _educationRepository = educationRepository;
 }
Exemplo n.º 22
0
        public MultiQuery(ISkillRepository skillRepository, ICompanyRepository companyRepository, IProjectRepository projectRepository, IEducationRepository educationRepository)
        {
            _skillRepository     = skillRepository;
            _companyRepository   = companyRepository;
            _projectRepository   = projectRepository;
            _educationRepository = educationRepository;

            DefineFieldWithArgument <SkillType, Skill>("skill", _skillRepository.Get, "id");
            DefineFieldWithArgument <CompanyType, Company>("company", _companyRepository.Get, "id");
            DefineFieldWithArgument <ProjectType, Project>("project", _projectRepository.Get, "id");
            DefineFieldWithArgument <EducationType, Education>("education", _educationRepository.Get, "id");

            DefineListField <SkillType, Skill>("skills", _skillRepository.GetAll);
            DefineListField <CompanyType, Company>("companies", _companyRepository.GetAll);
            DefineListField <ProjectType, Project>("projects", _projectRepository.GetAll);
            DefineListField <EducationType, Education>("educations", _educationRepository.GetAll);
        }
Exemplo n.º 23
0
 public DataManager(IDistrictRepository districtRepository,
     ILocalityRepository localityRepository,
     IStreetRepository streetRepository,
     IHouseRepository houseRepository,
     IMunicipalityRepository municipalityRepository,
     IPersonRepository personRepository,
     INationalityRepository nationalityRepository,
     IEducationRepository educationRepository,
     IOrganizationRepository organizationRepository,
     IMunicipalityHouseRelationRepository municipalityHouseRelationRepository,
     IRegistrationRepository registrationRepository,
     IPartyRepository partyRepository,
     IPrecinctRepository precinctRepository,
     IUserRepository userRepository,
     IWorkerRepository workerRepository,
     IVoterPartyRelationRepository voterPartyRelationRepository,
     IVoterRepository voterRepository,
     IUserLogRepository userLogRepository,
     IRelationshipRepository relationshipRepository,
     IPersonRelationRepository personRelationRepository,
     ICandidateRepository candidateRepository,
     IAgitatorRepository agitatorRepository,
     IWorkerHouseRelationRepository workerHouseRelationRepository,
     IAgitatorHouseRelationRepository agitatorHouseRelationRepository,
     IAgitatorPrecinctRelationRepository agitatorPrecinctRelationRepository,
     ICandidatePrecinctRelationRepository candidatePrecinctRelationRepository,
     ICandidateMunicipalityRelationRepository candidateMunicipalityRelationRepository,
     ITempPersonRepository tempPersonRepository,
     IGEORepository geoRepository,
     IPartyMemberRepository partyMemberRepository,
     IPartySupporterRepository partySupporterRepository)
 {
     this.districtRepository = districtRepository;
     this.municipalityRepository = municipalityRepository;
     this.personRepository = personRepository;
     this.localityRepository = localityRepository;
     this.nationalityRepository = nationalityRepository;
     this.streetRepository = streetRepository;
     this.houseRepository = houseRepository;
     this.educationRepository = educationRepository;
     this.organizationRepository = organizationRepository;
     this.municipalityHouseRelationRepository = municipalityHouseRelationRepository;
     this.registrationRepository = registrationRepository;
     this.partyRepository = partyRepository;
     this.precinctRepository = precinctRepository;
     this.userRepository = userRepository;
     this.workerRepository = workerRepository;
     this.voterPartyRelationRepository = voterPartyRelationRepository;
     this.voterRepository = voterRepository;
     this.userLogRepository = userLogRepository;
     this.relationshipRepository = relationshipRepository;
     this.personRelationRepository = personRelationRepository;
     this.candidateRepository = candidateRepository;
     this.agitatorRepository = agitatorRepository;
     this.workerHouseRelationRepository = workerHouseRelationRepository;
     this.agitatorHouseRelationRepository = agitatorHouseRelationRepository;
     this.agitatorPrecinctRelationRepository = agitatorPrecinctRelationRepository;
     this.candidatePrecinctRelationRepository = candidatePrecinctRelationRepository;
     this.candidateMunicipalityRelationRepository = candidateMunicipalityRelationRepository;
     this.tempPersonRepository = tempPersonRepository;
     this.geoRepository = geoRepository;
     this.partyMemberRepository = partyMemberRepository;
     this.partySupporterRepository = partySupporterRepository;
 }
Exemplo n.º 24
0
 public EducationController(IEducationRepository educationRepo)
 {
     this.educationRepo = educationRepo;
 }
Exemplo n.º 25
0
 public EditEducationViewModel(IEducationRepository repository)
 {
     repos = repository;
     LoadEducationItems();
     SetUpRelayCommands();
 }
Exemplo n.º 26
0
 public EducationLogic(IEducationRepository educationRepository)
 {
     _educationRepository = educationRepository;
 }
Exemplo n.º 27
0
 public EducationService(IEducationRepository EducationRepository)
     : base(EducationRepository)
 {
     _educationRepository = EducationRepository;
 }
 public DataManager(IDistrictRepository districtRepository,
                    ILocalityRepository localityRepository,
                    IStreetRepository streetRepository,
                    IHouseRepository houseRepository,
                    IMunicipalityRepository municipalityRepository,
                    IPersonRepository personRepository,
                    INationalityRepository nationalityRepository,
                    IEducationRepository educationRepository,
                    IOrganizationRepository organizationRepository,
                    IMunicipalityHouseRelationRepository municipalityHouseRelationRepository,
                    IRegistrationRepository registrationRepository,
                    IPartyRepository partyRepository,
                    IPrecinctRepository precinctRepository,
                    IUserRepository userRepository,
                    IWorkerRepository workerRepository,
                    IVoterPartyRelationRepository voterPartyRelationRepository,
                    IVoterRepository voterRepository,
                    IUserLogRepository userLogRepository,
                    IRelationshipRepository relationshipRepository,
                    IPersonRelationRepository personRelationRepository,
                    ICandidateRepository candidateRepository,
                    IAgitatorRepository agitatorRepository,
                    IWorkerHouseRelationRepository workerHouseRelationRepository,
                    IAgitatorHouseRelationRepository agitatorHouseRelationRepository,
                    IAgitatorPrecinctRelationRepository agitatorPrecinctRelationRepository,
                    ICandidatePrecinctRelationRepository candidatePrecinctRelationRepository,
                    ICandidateMunicipalityRelationRepository candidateMunicipalityRelationRepository,
                    ITempPersonRepository tempPersonRepository,
                    IGEORepository geoRepository,
                    IPartyMemberRepository partyMemberRepository,
                    IPartySupporterRepository partySupporterRepository)
 {
     this.districtRepository     = districtRepository;
     this.municipalityRepository = municipalityRepository;
     this.personRepository       = personRepository;
     this.localityRepository     = localityRepository;
     this.nationalityRepository  = nationalityRepository;
     this.streetRepository       = streetRepository;
     this.houseRepository        = houseRepository;
     this.educationRepository    = educationRepository;
     this.organizationRepository = organizationRepository;
     this.municipalityHouseRelationRepository = municipalityHouseRelationRepository;
     this.registrationRepository                  = registrationRepository;
     this.partyRepository                         = partyRepository;
     this.precinctRepository                      = precinctRepository;
     this.userRepository                          = userRepository;
     this.workerRepository                        = workerRepository;
     this.voterPartyRelationRepository            = voterPartyRelationRepository;
     this.voterRepository                         = voterRepository;
     this.userLogRepository                       = userLogRepository;
     this.relationshipRepository                  = relationshipRepository;
     this.personRelationRepository                = personRelationRepository;
     this.candidateRepository                     = candidateRepository;
     this.agitatorRepository                      = agitatorRepository;
     this.workerHouseRelationRepository           = workerHouseRelationRepository;
     this.agitatorHouseRelationRepository         = agitatorHouseRelationRepository;
     this.agitatorPrecinctRelationRepository      = agitatorPrecinctRelationRepository;
     this.candidatePrecinctRelationRepository     = candidatePrecinctRelationRepository;
     this.candidateMunicipalityRelationRepository = candidateMunicipalityRelationRepository;
     this.tempPersonRepository                    = tempPersonRepository;
     this.geoRepository            = geoRepository;
     this.partyMemberRepository    = partyMemberRepository;
     this.partySupporterRepository = partySupporterRepository;
 }
 public CourseNavigationViewComponent(ICourseRepository courseRepo, IEducationRepository educationRepo)
 {
     this.courseRepo    = courseRepo;
     this.educationRepo = educationRepo;
 }