Example #1
0
        static void Main(string[] args)
        {
            List <Student> students   = CandidatesAtFMI();
            University     university = new University("FMI", 32);

            GetNotificationsFromUniversity(students, university);
            CheckIfAllAccepted(students);
            university.NextClassification(30);
            CheckIfAllAccepted(students);
        }