示例#1
0
        static void Main(string[] args)
        {
            Courses courses = new Courses(new TextCourseData("../../../coursedata.txt"));

            courses.PrintAll();
            courses.PrintById(5);
            courses.PrintIds();
        }
示例#2
0
        static void Main(string[] args)
        {
            Courses courses = new Courses(new MemoryCourseData());

            courses.PrintAll();
            courses.PrintIds();
            courses.PrintById(2);
        }