using System.Collections.Generic; using System.Threading.Tasks; using ErsatzTV.Core.Domain; using LanguageExt; namespace ErsatzTV.Core.Interfaces.Repositories { public interface ISearchRepository { public Task> GetItemIdsToIndex(); public Task> GetItemToIndex(int id); public Task> GetLanguagesForShow(Show show); public Task> GetLanguagesForArtist(Artist artist); } }