mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Added more stubbed mothods and providers
This commit is contained in:
parent
8d47bcbe5e
commit
bca2e0c6b1
7 changed files with 75 additions and 3 deletions
|
@ -6,7 +6,7 @@ using SubSonic.Repository;
|
|||
|
||||
namespace NzbDrone.Core.Providers
|
||||
{
|
||||
public class EpisodeProvider
|
||||
public class EpisodeProvider : IEpisodeProvider
|
||||
{
|
||||
//TODO: Remove parsing of the series name, it should be done in series provider
|
||||
private static readonly Regex ParseRegex = new Regex(@"(?<showName>.*)
|
||||
|
@ -44,6 +44,16 @@ namespace NzbDrone.Core.Providers
|
|||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public IList<Episode> GetEpisodesBySeason(long seasonId)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public IList<Episode> GetEpisodeBySeries(long seriesId)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public String GetSabTitle(Episode episode)
|
||||
{
|
||||
var series = _seriesProvider.GetSeries(episode.SeriesId);
|
||||
|
@ -59,7 +69,7 @@ namespace NzbDrone.Core.Providers
|
|||
/// </summary>
|
||||
/// <param name="episode">Episode that needs to be checked</param>
|
||||
/// <returns></returns>
|
||||
public bool IsEpisodeNeeded(Episode episode)
|
||||
public bool IsNeeded(Episode episode)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue