Added SeasonSearchCommand

This commit is contained in:
Mark McDowall 2013-06-18 19:08:29 -07:00
commit 8ee0789c62
6 changed files with 115 additions and 33 deletions

View file

@ -19,7 +19,11 @@ namespace NzbDrone.Api.Indexers
private readonly IDownloadService _downloadService;
private readonly IParsingService _parsingService;
public ReleaseModule(IFetchAndParseRss rssFetcherAndParser, ISearchForNzb nzbSearchService, IMakeDownloadDecision downloadDecisionMaker, IDownloadService downloadService, IParsingService parsingService)
public ReleaseModule(IFetchAndParseRss rssFetcherAndParser,
ISearchForNzb nzbSearchService,
IMakeDownloadDecision downloadDecisionMaker,
IDownloadService downloadService,
IParsingService parsingService)
{
_rssFetcherAndParser = rssFetcherAndParser;
_nzbSearchService = nzbSearchService;
@ -40,7 +44,6 @@ namespace NzbDrone.Api.Indexers
return release;
}
private List<ReleaseResource> GetReleases()
{
if (Request.Query.episodeId != null)