/// <summary> /// Comprehensive check on whether or not this episode is needed. /// </summary> /// <param name="episode">Episode that needs to be checked</param> /// <returns></returns> public bool IsNeeded(BasicEpisode episode) { throw new NotImplementedException(); }
public BasicEpisode UpdateEpisode(BasicEpisode episode) { throw new NotImplementedException(); }
public String GetSabTitle(BasicEpisode episode) { var series = _series.GetSeries(episode.SeriesId); if (series == null) throw new ArgumentException("Unknown series. ID: " + episode.SeriesId); //TODO: This method should return a standard title for the sab episode. throw new NotImplementedException(); }