Beispiel #1
0
        /// <summary>
        /// Make a deep-copy of this timetable
        /// </summary>
        /// <returns></returns>
        public ITimetable MakeCopy()
        {
            SeasonalTimetable copy = new SeasonalTimetable();

            foreach (Section section in sections)
            {
                copy.AddSection(section);
            }
            return(copy);
        }