1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-04 10:48:42 +00:00
Radarr/NzbDrone.Core/IndexerSearch/SeasonSearchService.cs

24 lines
820 B
C#
Raw Normal View History

2013-07-18 20:47:55 -07:00
using NzbDrone.Common.Messaging;
2013-06-18 19:08:29 -07:00
using NzbDrone.Core.Download;
namespace NzbDrone.Core.IndexerSearch
{
public class SeasonSearchService : IExecute<SeasonSearchCommand>
{
private readonly ISearchForNzb _nzbSearchService;
private readonly IDownloadApprovedReports _downloadApprovedReports;
2013-06-18 19:08:29 -07:00
public SeasonSearchService(ISearchForNzb nzbSearchService, IDownloadApprovedReports downloadApprovedReports)
2013-06-18 19:08:29 -07:00
{
_nzbSearchService = nzbSearchService;
_downloadApprovedReports = downloadApprovedReports;
2013-06-18 19:08:29 -07:00
}
public void Execute(SeasonSearchCommand message)
{
var decisions = _nzbSearchService.SeasonSearch(message.SeriesId, message.SeasonNumber);
_downloadApprovedReports.DownloadApproved(decisions);
2013-06-18 19:08:29 -07:00
}
}
}