Example #1
0
 public YoutubeVideoLoader(IYoutubeDataClient youtubeDataClient, string channelId)
 {
     HasMoreItems       = true;
     _YoutubeDataClient = youtubeDataClient;
     _channelId         = channelId;
 }
Example #2
0
 public YoutubeVideoLoader(string channelId)
 {
     HasMoreItems       = true;
     _YoutubeDataClient = new YoutubeDataClient();
     _channelId         = channelId;
 }
Example #3
0
 public YoutubeIntegration(IBrothershipUnitOfWork unitOfWork, IYoutubeAuthClient youtubeAuthClient, IYoutubeDataClient youtubeDataClient)
 {
     _unitOfWork        = unitOfWork;
     _youtubeAuthClient = youtubeAuthClient;
     _youtubeDataClient = youtubeDataClient;
 }
Example #4
0
 public YoutubeIntegration()
 {
     _unitOfWork        = new BrothershipUnitOfWork();
     _youtubeAuthClient = new YoutubeAuthClient();
     _youtubeDataClient = new YoutubeDataClient();
 }
Example #5
0
 public IntegrationVideoCombiner(IYoutubeDataClient youtubeDataClient, ITwitchClient twitchClient, IBrothershipUnitOfWork unitOfWork)
 {
     _youtubeDataClient = youtubeDataClient;
     _twitchClient      = twitchClient;
     _unitOfWork        = unitOfWork;
 }
Example #6
0
 public IntegrationVideoCombiner()
 {
     _youtubeDataClient = new YoutubeDataClient();
     _twitchClient      = new TwitchClient();
 }