Exemplo n.º 1
0
        static Course GetData()
        {
            System.Console.WriteLine();
            System.Console.WriteLine("Please enter information for your course.");
            System.Console.WriteLine();
            string name = Gather.GetString("Course Name        ");
            string crn =  Gather.GetString("CRN                ");

            Course course = new Course(name, crn);

            string prompt = "Number of Students ";
            int nbrStudents = 0;
            while (nbrStudents <= 0)
            {
                nbrStudents = Gather.GetInt(prompt);
            }

            System.Console.WriteLine();
            course.GetCourseStudents(nbrStudents);
            return course;
        }