Пример #1
0
 public SubtitleController(
     ISubtitleService subtitleService,
     IMapper mapper
     )
 {
     _subtitleService = subtitleService;
     _mapper          = mapper;
 }
Пример #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 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;
 }
Пример #4
0
 public PluralsightCourseService(IConfigProvider configProvider, ISubtitleService subtitleService)
 {
     _configProvider  = configProvider;
     _subtitleService = subtitleService;
     _userAgent       = _configProvider.UserAgent;
 }