2010-09-23 03:19:47 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
|
2010-09-28 04:25:41 +00:00
|
|
|
|
namespace NzbDrone.Core.Providers
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-09-28 04:25:41 +00:00
|
|
|
|
public interface ISeriesProvider
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
|
|
|
|
IQueryable<Series> GetSeries();
|
2010-09-24 07:14:42 +00:00
|
|
|
|
Series GetSeries(int tvdbId);
|
2010-09-23 03:19:47 +00:00
|
|
|
|
void SyncSeriesWithDisk();
|
|
|
|
|
}
|
|
|
|
|
}
|