public AdminResumeController(IResumepageService resumepageService, IHomepageService homepageService, IEducationService educationService, ISkillsService skillsService, IExperienceService experienceService) { _resumepageService = resumepageService; _homepageService = homepageService; _educationService = educationService; _experienceService = experienceService; _skillsService = skillsService; }
public HomeController(IHomepageService homepageService, ISubtitleService subtitleService, IWhatIDoService whatIDoService, ITweetsService tweetsService, IViewersService viewersService) { _homepageService = homepageService; _subtitleService = subtitleService; _whatIDoService = whatIDoService; _tweetsService = tweetsService; _viewersService = viewersService; }
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; }
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; }