using System.Collections.Generic; using System.Threading.Tasks; using PodNoms.Api.Models; namespace PodNoms.Api.Persistence { public interface IPodcastRepository { Task GetAsync(int id); Task GetAsync(string emailAddress, string slug); Task> GetAllAsync(string emailAddress); Task AddOrUpdateAsync(Podcast item); Task DeleteAsync(int id); } }