public SearchTracksCommand(IBotProvider botProvider,
                            ISoundCloudInteractor soundCloudInteractor,
                            ISearchCache searchCache)
     : base(botProvider)
 {
     this.soundCloudInteractor = soundCloudInteractor;
     this.searchCache          = searchCache;
 }
Exemplo n.º 2
0
 public DownloadCommand(IBotProvider botProvider, ISoundCloudInteractor soundCloudInteractor) : base(botProvider)
 {
     this.soundCloudInteractor = soundCloudInteractor;
 }
 public ResolveCommand(IBotProvider botProvider, ISearchCache searchCache,
                       ISoundCloudInteractor soundCloudInteractor) : base(botProvider)
 {
     this.searchCache          = searchCache;
     this.soundCloudInteractor = soundCloudInteractor;
 }