!wip added a search by actor methodin the Movie Search Engine

This commit is contained in:
TidusJar 2019-01-21 14:54:29 +00:00
parent 3e4b2a8e9f
commit ff73e78e2c
6 changed files with 136 additions and 2 deletions

View file

@ -19,5 +19,7 @@ namespace Ombi.Api.TheMovieDb
Task<FindResult> Find(string externalId, ExternalSource source);
Task<TvExternals> GetTvExternals(int theMovieDbId);
Task<TvInfo> GetTVInfo(string themoviedbid);
Task<TheMovieDbContainer<ActorResult>> SearchByActor(string searchTerm, string langCode);
Task<ActorCredits> GetActorMovieCredits(int actorId, string langCode);
}
}