public LatestVideosProvider(IRepository <Video> videosRepository, IYouTubeChannelVideosFetcher videosFetcher)
 {
     this.videosRepository = videosRepository;
     this.videosFetcher    = videosFetcher;
 }
 public LatestVideosProvider(IApplicationDbContext db, IYouTubeChannelVideosFetcher videosFetcher)
 {
     this.db            = db;
     this.videosFetcher = videosFetcher;
 }
 public LatestVideosProvider(IApplicationDbContext db, IYouTubeChannelVideosFetcher videosFetcher)
 {
     this.db = db;
     this.videosFetcher = videosFetcher;
 }