public AdminProfileCommands( IProfileService profileService, IGuildPreferences guildPreferences, IExperienceService experienceService, IGotService gotService, ILeaveService leaveService, ISpellErrorService spellErrorService, ISpellCorrectService spellCorrectService, IBoganCountService boganCountService, IQuietModeService quietModeService, ITextProcessorService textProcessorService, IGoldService goldService ) { _profileService = profileService; _guildPreferences = guildPreferences; _experienceService = experienceService; _gotService = gotService; _leaveService = leaveService; _spellErrorService = spellErrorService; _spellCorrectService = spellCorrectService; _boganCountService = boganCountService; _quietModeService = quietModeService; _textProcessorService = textProcessorService; _goldService = goldService; }
public HomeController(ILogementextService logementextService, INourritureExtService nourritureExtService, IExperienceService experienceService, ILogger <HomeController> logger) { ExperienceService = experienceService; LogementExtService = logementextService; NourritureExtService = nourritureExtService; _logger = logger; }
public EditController(IEmployesService employesService, IDepartmentsService departmentsService, ILanguagesService languagesService, IExperienceService experienceService) { _employesService = employesService; _departmentsService = departmentsService; _languagesService = languagesService; _experienceService = experienceService; }
public CandidatController() { candidateService = new UserService(); experienceService = new ExperienceService(); hobbiesService = new HobbiesService(); skillService = new SkillsService(); }
public FunCommands(IProfileService profileService, IExperienceService experienceService, IGotService gotService, IStatsService statsService) { _profileService = profileService; _experienceService = experienceService; _gotService = gotService; _statsService = statsService; }
public ExperienceController( IExperienceService experienceService, ILoggingService loggingService) { _experienceService = experienceService; _loggingService = loggingService; }
public AdminResumeController(IResumepageService resumepageService, IHomepageService homepageService, IEducationService educationService, ISkillsService skillsService, IExperienceService experienceService) { _resumepageService = resumepageService; _homepageService = homepageService; _educationService = educationService; _experienceService = experienceService; _skillsService = skillsService; }
public HomeController(ILogger <HomeController> logger, IExperienceService experienceService, ILocationService locationService, ICategoryService categoryService, UserManager <BeenThereUser> userManager) { _logger = logger; _ExperienceService = experienceService; _LocationService = locationService; _CategoryService = categoryService; _UserManager = userManager; }
public JobController(IJobService jobService, IEmployerService employerService, ICityService cityService, IExperienceService experienceService, ISocialRightService socialService) { this.jobService = jobService; this.employerService = employerService; this.cityService = cityService; this.experienceService = experienceService; this.socialService = socialService; }
public ExperienceController(ILocalizedEnitityHelperService localizedEnitityHelperService, IExperienceService experienceService, ILanguageWebApi languageWebApi) { _localizedEnitityHelperService = localizedEnitityHelperService; _experienceService = experienceService; _languageWebApi = languageWebApi; }
public SocialController(UserManager <BeenThereUser> userManager, IExperienceService experienceService, ILocationService locationService, ICategoryService categoryService, ICommentService commentService) { _UserManager = userManager; _ExperienceService = experienceService; _LocationService = locationService; _CategoryService = categoryService; _CommentService = commentService; }
public ApplicationService( IInterestService interestService, IExperienceService experienceService ) { _interestService = interestService; _experienceService = experienceService; }
public GambleCommands(IProfileService profileService, IExperienceService experienceService, IGotService gotService, ILeaveService leaveService, IGoldService goldService) { _profileService = profileService; _experienceService = experienceService; _gotService = gotService; _leaveService = leaveService; _goldService = goldService; }
public AdminController(IExperienceService experienceService, ICategoryService categoryService, ILocationService locationService, RoleManager <IdentityRole> roleManager, UserManager <BeenThereUser> userManager) { _ExperienceService = experienceService; _CategoryService = categoryService; _LocationService = locationService; _RoleManager = roleManager; _UserManager = userManager; }
public EmployeeController(IEmployeeService employeeService, IGenderService genderService, IExperienceService experienceService, IQualificationService qualificationService, IDesignationService designationService, IDepartmentService departmentService) { this.employeeService = employeeService; this.genderService = genderService; this.experienceService = experienceService; this.qualificationService = qualificationService; this.designationService = designationService; this.departmentService = departmentService; }
public void Load() { uow = new Mock <IUnitOfWork>(); expRepository = new Mock <IRepository <ResumesExperience> >(); uow.Setup(x => x.ResumesExperiences).Returns(expRepository.Object); expService = new ExperienceService(uow.Object); }
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(); }
public HomeController(UserManager<ApplicationUser> UserManager,ICompanyService CompanyService,IEmployeeService EmployeeService,IReportService ReportService,IExperienceService experienceService, ITerminateService terminateService, IPositionService positionService) { this.companyService = CompanyService; this.employeeService = EmployeeService; this.terminateService = terminateService; this.reportService = ReportService; this.experienceService = experienceService; this.positionService = positionService; this.userManager = UserManager; }
public void SetUp() { _mockGangerManager = new Mock <IGangerManager>(); _mockGangManager = new Mock <IGangManager>(); _mockDiceRoller = new Mock <IDiceRoller>(); _experienceService = new ExperienceService( _mockGangerManager.Object, _mockGangManager.Object, _mockDiceRoller.Object); }
public AccountController(IGenderService genderService, IQualificationService qualificationService, IDepartmentService departmentService, IDesignationService designationService, IEmployeeService employeeService, IExperienceService experienceService, ILeaveRequestService leaveRequestService, IVacationTypeService vacationTypeService) { this.genderService = genderService; this.qualificationService = qualificationService; this.departmentService = departmentService; this.designationService = designationService; this.employeeService = employeeService; this.experienceService = experienceService; this.leaveRequestService = leaveRequestService; this.vacationTypeService = vacationTypeService; }
/// <summary> /// Initializes a new instance of the <see cref="GameService"/> class. /// </summary> /// <param name="injuryService">Injury service</param> /// <param name="incomeService">Income service</param> /// <param name="experienceService">Experience service</param> /// <param name="gangerManager">Ganger manager</param> public GameService( IInjuryService injuryService, IIncomeService incomeService, IExperienceService experienceService, IGangerManager gangerManager) { _injuryService = injuryService ?? throw new ArgumentNullException(nameof(injuryService)); _incomeService = incomeService ?? throw new ArgumentNullException(nameof(incomeService)); _experienceService = experienceService ?? throw new ArgumentNullException(nameof(experienceService)); _gangerManager = gangerManager ?? throw new ArgumentNullException(nameof(gangerManager)); }
public LearnWordController(ICommentService m_commentService, ILearnWordService m_learnWordService, ICurrencyUserManager m_currencyUserService, IExperienceService m_expService, ICourseService m_courseService, IClassService m_classService, IUserService m_userService) { this.m_learnWordService = m_learnWordService; this.m_commentService = m_commentService; this.m_currencyUserService = m_currencyUserService; this.m_expService = m_expService; this.m_courseService = m_courseService; this.m_classService = m_classService; this.m_userService = m_userService; }
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; }
public EmployeeController(UserManager<ApplicationUser> UserManager, IExperienceService experienceService, ISalaryService salaryService, IEmployeeService employeeService, ICompanyService companyService, ITerminateService terminateService, IPositionService positionService, IContractService contractService, IInsuranceService insuranceService) { this.employeeService = employeeService; this.companyService = companyService; this.terminateService = terminateService; this.positionService = positionService; this.contractService = contractService; this.insuranceService = insuranceService; this.salaryService = salaryService; this.experienceService = experienceService; this.userManager = UserManager; }
public CvController( ILoggingService loggingService, ICurriculumVitaeService curriculumVitaeService, IExperienceService experienceService, ICourseService courseService, IPortalService portalService) { _loggingService = loggingService; _curriculumVitaeService = curriculumVitaeService; _experienceService = experienceService; _courseService = courseService; _portalService = portalService; }
public ExperienceController(ITransportService transportService, ILogementService _LogementService, IUserService _UserService, INourritureService _NourritureService, IWebHostEnvironment hostingEnvironment, IExperienceService experienceService, IActiviteService activiteService, UserManager <Utilisateur> userManager, IRatingService ratingService, SignInManager <Utilisateur> signInManager) { TransportService = transportService; LogementService = _LogementService; this.hostingEnvironment = hostingEnvironment; ExperienceService = experienceService; UserService = _UserService; NourritureService = _NourritureService; ActiviteService = activiteService; this.userManager = userManager; this.signInManager = signInManager; userService = _UserService; this.ratingService = ratingService; }
public HomeController(ICountryService countryService, IRegionService regionService, IJobTypeService jobTypeService, ISectorService sectorService, IExperienceService experienceService, IGenderService genderService, IJobPostService jobPostService, IGeneralService generalService, IMapper mapper) { _countryService = countryService; _regionService = regionService; _jobTypeService = jobTypeService; _sectorService = sectorService; _experienceService = experienceService; _genderService = genderService; _jobPostService = jobPostService; _generalService = generalService; _mapper = mapper; }
public UsersController( IUserService userService, IUserSkillsService userSkillsService, IExperienceService experienceService, IOptions <AppSettings> appSettings, IApplicationService applicationService, IErrorHandler handler ) { _userService = userService; _appSettings = appSettings.Value; _userSkillsService = userSkillsService; _userExperienceService = experienceService; _applicationService = applicationService; _handler = handler; }
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 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(); }
public AccountController(ILocationService m_locationService, IExperienceService m_expService, ICurrencyUserManager m_currencyUserService, ILearnWordResultService m_learnWordResult, IClassService m_classService, IHepaPassportService m_passportService, IUserService m_userService) { this.m_locationService = m_locationService; this.m_userManager = new ApplicationUserManager(new UserStore <ApplicationUser>(DatabaseService.CreateDbContext())); this.m_expService = m_expService; this.m_currencyUserService = m_currencyUserService; this.m_learnWordResultService = m_learnWordResult; this.m_passportService = m_passportService; this.m_userService = m_userService; this.m_classService = m_classService; }
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; }