mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
rewrite of indexer/episode search
This commit is contained in:
parent
9ae21cf7a1
commit
a6a4932b44
114 changed files with 2045 additions and 5577 deletions
|
@ -20,6 +20,7 @@ namespace NzbDrone.Core.Tv
|
|||
bool IsMonitored(int id);
|
||||
Series UpdateSeriesInfo(int seriesId);
|
||||
Series FindSeries(string title);
|
||||
Series GetSeries(int seriesId);
|
||||
void AddSeries(Series newSeries);
|
||||
void UpdateFromSeriesEditor(IList<Series> editedSeries);
|
||||
Series FindByTvdbId(int tvdbId);
|
||||
|
@ -95,6 +96,11 @@ namespace NzbDrone.Core.Tv
|
|||
return _seriesRepository.GetByTitle(normalizeTitle);
|
||||
}
|
||||
|
||||
public Series GetSeries(int seriesId)
|
||||
{
|
||||
return _seriesRepository.Get(seriesId);
|
||||
}
|
||||
|
||||
public void AddSeries(Series newSeries)
|
||||
{
|
||||
Ensure.That(() => newSeries).IsNotNull();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue