Esempio n. 1
0
 public HomeController(IHomepageService homepageService, ISubtitleService subtitleService, IWhatIDoService whatIDoService, ITweetsService tweetsService, IViewersService viewersService)
 {
     _homepageService = homepageService;
     _subtitleService = subtitleService;
     _whatIDoService  = whatIDoService;
     _tweetsService   = tweetsService;
     _viewersService  = viewersService;
 }
Esempio n. 2
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;
 }