You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/NzbDrone.Core/Providers/ISeriesProvider.cs

26 lines
750 B

14 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using NzbDrone.Core.Entities;
14 years ago
using TvdbLib.Data;
14 years ago
namespace NzbDrone.Core.Providers
14 years ago
{
public interface ISeriesProvider
14 years ago
{
IQueryable<Series> GetSeries();
Series GetSeries(int seriesId);
14 years ago
void SyncSeriesWithDisk();
/// <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);
14 years ago
TvdbSeries MapPathToSeries(string path);
14 years ago
void RegisterSeries(string path, TvdbSeries series);
List<String> GetUnmappedFolders();
14 years ago
}
}