using System.Collections.Generic; using System.Threading.Tasks; using Kyoo.Models; namespace Kyoo.Controllers { public interface IProviderManager { Task GetCollectionFromName(string name, Library library); Task CompleteShow(Show show, Library library); Task SearchShow(string showName, bool isMovie, Library library); Task> SearchShows(string showName, bool isMovie, Library library); Task GetSeason(Show show, int seasonNumber, Library library); Task GetEpisode(Show show, string episodePath, int seasonNumber, int episodeNumber, int absoluteNumber, Library library); Task> GetPeople(Show show, Library library); } }