示例#1
0
 public DeleteModel(
     IContestantsService contestantsService,
     UserManager <User> userManager)
 {
     this._contestantsService = contestantsService;
     this._userManager        = userManager;
 }
        public ContestantsController(
            IHttpContextAccessor httpContext,
            UserManager <User> userManager,
            IBaseService baseService,
            ICipherService chipherService,
            INotificationService notifyService,
            IContestantsService contestantsService,
            ICategoriesService categoriesService,
            ISkillsService skillsService,
            ILocationService locationService,
            ILanguageService langService,
            IFavoritesService favoriteService)
        {
            _httpcontext    = httpContext;
            _userManager    = userManager;
            _baseService    = baseService;
            _chipherService = chipherService;

            _notifyService      = notifyService;
            _contestantsService = contestantsService;
            _categoriesService  = categoriesService;

            _skillsService   = skillsService;
            _locationService = locationService;
            _langService     = langService;
            _favoriteService = favoriteService;
        }
示例#3
0
 public LanguageService(
     IRepository <Language> LanguageRepository,
     IContestantsService contestantService,
     IJobsService jobsService)
 {
     this.LanguageRepository = LanguageRepository;
     this._contestantService = contestantService;
     this._jobsService       = jobsService;
 }
示例#4
0
        public SkillsService(
            IRepository <Skills> skillsRepository,
            IContestantsService contestantService,
            IJobsService jobsService)

        {
            this.skillsRepository   = skillsRepository;
            this._contestantService = contestantService;
            this._jobsService       = jobsService;
        }
示例#5
0
 public FavoritesService(
     UserManager <User> userManager,
     IJobsService jobsService,
     IContestantsService contestantService,
     ICompanyService companiesService)
 {
     _userManager       = userManager;
     _jobsService       = jobsService;
     _contestantService = contestantService;
     _companiesService  = companiesService;
 }
示例#6
0
 public HomeController(
     IConfiguration config,
     UserManager <User> userManager,
     ICategoriesService categoriesService,
     IContestantsService contestantsService,
     ICompanyService companyService)
 {
     _config             = config;
     _userManager        = userManager;
     _categoriesService  = categoriesService;
     _contestantsService = contestantsService;
     _companyService     = companyService;
 }
示例#7
0
 public EditModel(
     IConfiguration config,
     IBaseService baseService,
     ICategoriesService categoriesService,
     ILocationService locationService,
     IContestantsService contestantService,
     UserManager <User> userManager)
 {
     this._config            = config;
     this._baseService       = baseService;
     this._categoriesService = categoriesService;
     this._contestantService = contestantService;
     this._locationService   = locationService;
     this._userManager       = userManager;
 }
示例#8
0
        public ContestantsController(
            UserManager <User> userManager,
            IContestantsService contestantsService,
            ICategoriesService categoriesService,
            ISkillsService skillsService,
            ILocationService locationService,
            ILanguageService langService)
        {
            _userManager        = userManager;
            _contestantsService = contestantsService;
            _categoriesService  = categoriesService;

            _skillsService   = skillsService;
            _locationService = locationService;
            _langService     = langService;
        }
示例#9
0
文件: Index.cs 项目: iNexus2/HireMe
 public IndexModel(UserManager <User> userManager,
                   IContestantsService contestantService,
                   IJobsService jobsService,
                   ICompanyService companyService,
                   IMessageService messageService,
                   IFavoritesService favouritesService,
                   IResumeService resumeService)
 {
     _userManager       = userManager;
     _contestantService = contestantService;
     _jobsService       = jobsService;
     _companyService    = companyService;
     _messageService    = messageService;
     _favouritesService = favouritesService;
     _resumeService     = resumeService;
 }
示例#10
0
 public DeletePersonalDataModel(
     UserManager <User> userManager,
     SignInManager <User> signInManager,
     IBaseService baseService,
     IJobsService jobsService,
     ICompanyService companyService,
     IContestantsService contestantService,
     IResumeService resumeService)
 {
     _userManager       = userManager;
     _signInManager     = signInManager;
     _baseService       = baseService;
     _jobsService       = jobsService;
     _companyService    = companyService;
     _contestantService = contestantService;
     _resumeService     = resumeService;
 }
示例#11
0
        public EditModel(
            IConfiguration config,
            IBaseService baseService,
            ICategoriesService categoriesService,
            ILocationService locationService,
            IContestantsService contestantService,
            ILanguageService langService,
            ISkillsService skillsService,
            UserManager <User> userManager)
        {
            _baseService       = baseService;
            _categoriesService = categoriesService;
            _contestantService = contestantService;
            _locationService   = locationService;
            _langService       = langService;
            _skillsService     = skillsService;
            _userManager       = userManager;

            _FilePath  = config.GetValue <string>("MySettings:ResumeUrl");
            _ImagePath = config.GetValue <string>("MySettings:SiteImageUrl");
        }
示例#12
0
 public PostsModel(UserManager <User> userManager, IContestantsService contestantService)
 {
     this.userManager        = userManager;
     this._contestantService = contestantService;
 }
示例#13
0
 public DashboardModel(UserManager <User> userManager,
                       IContestantsService contestantService)
 {
     _userManager            = userManager;
     this._contestantService = contestantService;
 }
示例#14
0
 public AllModel(IContestantsService contestantService)
 {
     this._contestantService = contestantService;
 }