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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Core.DecisionEngine.Specifications;
|
|
|
|
|
using NzbDrone.Core.Messaging;
|
|
|
|
|
using NzbDrone.Core.Tv.Events;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Tv
|
|
|
|
|
{
|
|
|
|
|
public interface ISeasonService
|
|
|
|
|
{
|
|
|
|
|
List<Season> GetSeasonsBySeries(int seriesId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class SeasonService : ISeasonService
|
|
|
|
|
{
|
|
|
|
|
private readonly ISeasonRepository _seasonRepository;
|
|
|
|
|
private readonly Logger _logger;
|
|
|
|
|
|
|
|
|
|
public SeasonService(ISeasonRepository seasonRepository, Logger logger)
|
|
|
|
|
{
|
|
|
|
|
_seasonRepository = seasonRepository;
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<Season> GetSeasonsBySeries(int seriesId)
|
|
|
|
|
{
|
|
|
|
|
return _seasonRepository.GetSeasonBySeries(seriesId);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} |