Beispiel #1
0
 /// <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();
 }
Beispiel #2
0
 public BasicEpisode UpdateEpisode(BasicEpisode episode)
 {
     throw new NotImplementedException();
 }
Beispiel #3
0
        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();
        }