1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-31 16:02:29 +01:00
Sonarr/NzbDrone.Core/Providers/ISeriesProvider.cs

25 lines
713 B
C#
Raw Normal View History

2010-10-02 21:01:43 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using NzbDrone.Core.Entities;
2010-10-02 21:01:43 +02:00
using TvdbLib.Data;
2010-09-23 05:19:47 +02:00
namespace NzbDrone.Core.Providers
2010-09-23 05:19:47 +02:00
{
public interface ISeriesProvider
2010-09-23 05:19:47 +02:00
{
IQueryable<Series> GetAllSeries();
2010-10-05 08:21:18 +02:00
Series GetSeries(int seriesId);
/// <summary>
/// Determines if a series is being actively watched.
/// </summary>
/// <param name="id">The TVDB ID of the series</param>
/// <returns>Whether or not the show is monitored</returns>
bool IsMonitored(long id);
2010-10-02 21:01:43 +02:00
TvdbSeries MapPathToSeries(string path);
void AddSeries(string path, TvdbSeries series);
2010-10-02 21:01:43 +02:00
List<String> GetUnmappedFolders();
2010-09-23 05:19:47 +02:00
}
}