static void Main(string[] args) { Courses courses = new Courses(new TextCourseData("../../../coursedata.txt")); courses.PrintAll(); courses.PrintById(5); courses.PrintIds(); }
static void Main(string[] args) { Courses courses = new Courses(new MemoryCourseData()); courses.PrintAll(); courses.PrintIds(); courses.PrintById(2); }