Implementing the movies for the providers

This commit is contained in:
Zoe Roux
2020-02-13 23:19:24 +01:00
parent e5bb71084b
commit fe3407b334
4 changed files with 10 additions and 11 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ namespace Kyoo.Controllers
//For the show
Task<Show> GetShowByID(string id);
Task<Show> GetShowFromName(string showName);
Task<Show> GetShowFromName(string showName, bool isMovie);
Task<IEnumerable<PeopleLink>> GetPeople(Show show);
//For the seasons
+1 -1
View File
@@ -7,7 +7,7 @@ namespace Kyoo.Controllers
public interface IProviderManager
{
Task<Collection> GetCollectionFromName(string name, Library library);
Task<Show> GetShowFromName(string showName, string showPath, Library library);
Task<Show> GetShowFromName(string showName, string showPath, bool isMovie, Library library);
Task<Season> GetSeason(Show show, long seasonNumber, Library library);
Task<Episode> GetEpisode(Show show, string episodePath, long seasonNumber, long episodeNumber, long absoluteNumber, Library library);
Task<IEnumerable<PeopleLink>> GetPeople(Show show, Library library);