public SearchTracksCommand(IBotProvider botProvider, ISoundCloudInteractor soundCloudInteractor, ISearchCache searchCache) : base(botProvider) { this.soundCloudInteractor = soundCloudInteractor; this.searchCache = searchCache; }
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; }