You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
906 B
28 lines
906 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Download;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
{
|
|
public class SeasonSearchService : IExecute<SeasonSearchCommand>
|
|
{
|
|
private readonly ISearchForNzb _nzbSearchService;
|
|
private readonly IDownloadApprovedReports _downloadApprovedReports;
|
|
|
|
public SeasonSearchService(ISearchForNzb nzbSearchService, IDownloadApprovedReports downloadApprovedReports)
|
|
{
|
|
_nzbSearchService = nzbSearchService;
|
|
_downloadApprovedReports = downloadApprovedReports;
|
|
}
|
|
|
|
public void Execute(SeasonSearchCommand message)
|
|
{
|
|
var decisions = _nzbSearchService.SeasonSearch(message.SeriesId, message.SeasonNumber);
|
|
_downloadApprovedReports.DownloadApproved(decisions);
|
|
}
|
|
}
|
|
}
|