Example #1
0
 public VodSearchEngine(FightingGameVodRepository repo, YouTubeApiService apiSvc, UshioConstants constants)
 {
     _fightingGameVodRepository = repo;
     _youTubeApiService         = apiSvc;
     _ushioConstants            = constants.InitializeVodChannelInfo();
     _rnd            = new Random();
     _vodTitleParser = new VodTitleParser();
 }
 public FightingGameVodCommands(FightingGameVodRepository fgVodRepo, YouTubeApiService ytApiSvc, UshioConstants constants)
 {
     vodSearchEngine = new VodSearchEngine(fgVodRepo, ytApiSvc, constants);
     ushioConstants  = constants;
 }