コード例 #1
0
        //View all  Instructors and display the course they teach
        private static void Q5()
        {
            listData.ListInstructor();
            string menu1        = "Please Enter Instructor ID";
            short  instructorID = short.Parse(AskInput(menu1));

            listData.ListCourseByInstructor(instructorID);
            Success();
        }