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.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using NzbDrone.Api.Series;
|
|
|
|
|
using RestSharp;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Integration.Test.Client
|
|
|
|
|
{
|
|
|
|
|
public class SeriesClient : ClientBase<SeriesResource>
|
|
|
|
|
{
|
|
|
|
|
public SeriesClient(IRestClient restClient)
|
|
|
|
|
: base(restClient, "series")
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<SeriesResource> Lookup(string term)
|
|
|
|
|
{
|
|
|
|
|
var request = BuildRequest("lookup?term={term}");
|
|
|
|
|
request.AddUrlSegment("term", term);
|
|
|
|
|
return Get<List<SeriesResource>>(request);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|