2010-09-23 03:19:47 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using TvdbLib.Data;
|
|
|
|
|
|
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 ITvDbProvider
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-09-28 00:27:02 +00:00
|
|
|
|
IList<TvdbSearchResult> SearchSeries(string name);
|
2010-09-23 03:19:47 +00:00
|
|
|
|
TvdbSeries GetSeries(int id, TvdbLanguage language);
|
2010-10-04 01:00:50 +00:00
|
|
|
|
TvdbSearchResult GetSeries(string title);
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|