public GetChannelDetailsQueryHandler(IYoutubeApiClient youtubeApiClient,
                                      IVideoRepository videoRepository,
                                      IBackgroundTaskQueue backgroundTaskQueue,
                                      IServiceScopeFactory serviceScopeFactory)
 {
     this.youtubeApiClient    = youtubeApiClient;
     this.videoRepository     = videoRepository;
     this.backgroundTaskQueue = backgroundTaskQueue;
     this.serviceScopeFactory = serviceScopeFactory;
 }
Beispiel #2
0
 public PlaylistItemService(IYoutubeApiClient youtubeApiClient, IUmbracoContextFactory context)
 {
     _youtubeApiClient = youtubeApiClient;
     _context          = context;
 }