Example #1
0
        public bool AddEpisodeToEpisodeList(Episode content)
        {
            int episodeListLength = Episodes.Count();

            Episodes.Add(content);
            bool wasAdded = episodeListLength + 1 == Episodes.Count();

            return(wasAdded);
        }