using System; using System.Collections.Generic; using NzbDrone.Core.Entities.Episode; namespace NzbDrone.Core.Providers { public interface IEpisodeProvider { BasicEpisode GetEpisode(long id); BasicEpisode UpdateEpisode(BasicEpisode episode); IList GetEpisodesBySeason(long seasonId); IList GetEpisodeBySeries(long seriesId); String GetSabTitle(BasicEpisode episode); /// /// Comprehensive check on whether or not this episode is needed. /// /// Episode that needs to be checked /// bool IsNeeded(BasicEpisode episode); void RefreshSeries(int seriesId); } }