예제 #1
0
 public PresentController(IApiKeyProvider apiKeyProvider, IShowsClient shows, ILogger <PresentController> logger, IQuestionsClient questions)
 {
     _apiKeyProvider = apiKeyProvider;
     _shows          = shows;
     _logger         = logger;
     _questions      = questions;
 }
 public SearchController(IShowsClient showsClient)
 {
     _showsClient = showsClient;
 }
예제 #3
0
 public LiveController(IShowsClient shows, ILogger <LiveController> logger)
 {
     _shows  = shows;
     _logger = logger;
 }
 public ScrapperShowsService(IShowsClient showsClient, ICastClient castClient)
 {
     _showsClient = showsClient;
     _castClient  = castClient;
 }