mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-09 01:16:49 +00:00
SeasonProvider GetLatestSeason added
This commit is contained in:
@@ -7,6 +7,7 @@ namespace NzbDrone.Core.Providers
|
||||
{
|
||||
Season GetSeason(int seasonId);
|
||||
List<Season> GetSeasons(int seriesId);
|
||||
Season GetLatestSeason(int seriesId);
|
||||
void EnsureSeason(int seriesId, int seasonId, int seasonNumber);
|
||||
int SaveSeason(Season season);
|
||||
bool IsIgnored(int seasonId);
|
||||
|
||||
@@ -27,6 +27,11 @@ namespace NzbDrone.Core.Providers
|
||||
return _sonicRepo.All<Season>().Where(s => s.SeriesId == seriesId).ToList();
|
||||
}
|
||||
|
||||
public Season GetLatestSeason(int seriesId)
|
||||
{
|
||||
return _sonicRepo.All<Season>().Where(s => s.SeriesId == seriesId).OrderBy(s => s.SeasonNumber).Last();
|
||||
}
|
||||
|
||||
public void EnsureSeason(int seriesId, int seasonId, int seasonNumber)
|
||||
{
|
||||
if (_sonicRepo.Exists<Season>(s => s.SeasonId == seasonId))
|
||||
|
||||
Reference in New Issue
Block a user