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.
47 lines
1.0 KiB
47 lines
1.0 KiB
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NLog;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.History
|
|
{
|
|
|
|
public class HistoryService
|
|
{
|
|
private readonly IHistoryRepository _historyRepository;
|
|
private readonly Logger _logger;
|
|
|
|
|
|
public HistoryService(IHistoryRepository historyRepository, Logger logger)
|
|
{
|
|
_historyRepository = historyRepository;
|
|
_logger = logger;
|
|
}
|
|
|
|
public List<History> All()
|
|
{
|
|
return _historyRepository.All().ToList();
|
|
}
|
|
|
|
public void Purge()
|
|
{
|
|
_historyRepository.Purge();
|
|
}
|
|
|
|
public virtual void Trim()
|
|
{
|
|
_historyRepository.Trim();
|
|
}
|
|
|
|
public void Add(History item)
|
|
{
|
|
|
|
}
|
|
|
|
public virtual QualityModel GetBestQualityInHistory(int seriesId, int seasonNumber, int episodeNumber)
|
|
{
|
|
return _historyRepository.GetBestQualityInHistory(seriesId, seasonNumber, episodeNumber);
|
|
}
|
|
|
|
}
|
|
} |