Пример #1
0
 public AdminResumeController(IResumepageService resumepageService, IHomepageService homepageService, IEducationService educationService, ISkillsService skillsService, IExperienceService experienceService)
 {
     _resumepageService = resumepageService;
     _homepageService   = homepageService;
     _educationService  = educationService;
     _experienceService = experienceService;
     _skillsService     = skillsService;
 }
Пример #2
0
 public HomeController(IHomepageService homepageService, ISubtitleService subtitleService, IWhatIDoService whatIDoService, ITweetsService tweetsService, IViewersService viewersService)
 {
     _homepageService = homepageService;
     _subtitleService = subtitleService;
     _whatIDoService  = whatIDoService;
     _tweetsService   = tweetsService;
     _viewersService  = viewersService;
 }
Пример #3
0
 public HomeController(BusinessId businessId, IApplicationConfiguration applicationConfiguration, INewsService newsService, IEventsService eventsService, IHomepageService homepageService, IStockportApiEventsService stockportApiService)
 {
     _config                    = applicationConfiguration;
     _businessId                = businessId;
     _newsService               = newsService;
     _eventsService             = eventsService;
     _homepageService           = homepageService;
     _stockportApiEventsService = stockportApiService;
 }
Пример #4
0
 public AdminController(IHomepageService homepageService, ISubtitleService subtitleService, IWhatIDoService whatIDoService, ITweetsService tweetsService, IHomeSubtitleService homesubtitleService, SignInManager <ApplicationUser> signinManager, UserManager <ApplicationUser> userManager, IViewersService viewersService)
 {
     _homepageService     = homepageService;
     _subtitleService     = subtitleService;
     _whatIDoService      = whatIDoService;
     _tweetsService       = tweetsService;
     _userManager         = userManager;
     _signinManager       = signinManager;
     _homesubtitleService = homesubtitleService;
     _viewersService      = viewersService;
 }