1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/IndexerSearch/SeasonSearchService.cs

28 lines
906 B
C#
Raw Normal View History

2013-06-19 05:08:29 +03:00
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;
2013-06-19 05:08:29 +03:00
public SeasonSearchService(ISearchForNzb nzbSearchService, IDownloadApprovedReports downloadApprovedReports)
2013-06-19 05:08:29 +03:00
{
_nzbSearchService = nzbSearchService;
_downloadApprovedReports = downloadApprovedReports;
2013-06-19 05:08:29 +03:00
}
public void Execute(SeasonSearchCommand message)
{
var decisions = _nzbSearchService.SeasonSearch(message.SeriesId, message.SeasonNumber);
_downloadApprovedReports.DownloadApproved(decisions);
2013-06-19 05:08:29 +03:00
}
}
}