2013-02-20 02:05:15 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
2013-05-05 21:24:33 +00:00
|
|
|
using NzbDrone.Common.Messaging;
|
2013-02-20 02:05:15 +00:00
|
|
|
using NzbDrone.Core.Datastore;
|
2013-03-25 03:51:32 +00:00
|
|
|
|
2013-02-20 02:05:15 +00:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Tv
|
|
|
|
{
|
2013-09-10 05:22:38 +00:00
|
|
|
public interface ISeasonRepository : IBasicRepository<Series>
|
2013-02-20 02:05:15 +00:00
|
|
|
{
|
|
|
|
List<Season> GetSeasonBySeries(int seriesId);
|
|
|
|
}
|
|
|
|
|
2013-09-10 05:22:38 +00:00
|
|
|
public class SeasonRepository : BasicRepository<Series>, ISeasonRepository
|
2013-02-20 02:05:15 +00:00
|
|
|
{
|
2013-05-05 21:24:33 +00:00
|
|
|
public SeasonRepository(IDatabase database, IMessageAggregator messageAggregator)
|
|
|
|
: base(database, messageAggregator)
|
2013-02-20 02:05:15 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<Season> GetSeasonBySeries(int seriesId)
|
|
|
|
{
|
2013-09-10 05:22:38 +00:00
|
|
|
return Query.Single(s => s.Id == seriesId).Seasons;
|
2013-02-20 02:05:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|