Esempio n. 1
0
        static void Main(string[] args)
        {
            Student s1 = new Student("Angel", "Munoz", new DateTime(1992, 05, 16), "Dir1", "Juarez", "Chihuahua", 12345, "Mexico");
            Student s2 = new Student("Perla", "Lopez", new DateTime(1992, 12, 10), "Dir1", "Juarez", "Chihuahua", 12345, "Mexico", "Dir2");
            Student s3 = new Student("Victor", "Munoz", new DateTime(1992, 07, 10), "Dir1", "Juarez", "Chihuahua", 12345, "Mexico");
            Student[] students = { s1, s2, s3 };
            Teacher t1 = new Teacher("Dora", "Rivero", new DateTime(1980, 05, 16), "Dir1", "Juarez", "Chihuahua", 12345, "Mexico");
            Teacher t2 = new Teacher("Ricardo", "Trejo", new DateTime(1981, 03, 19), "Dir1", "Juarez", "Chihuahua", 12345, "Mexico", "Dir2");
            Teacher t3 = new Teacher("Victor", "Arellanes", new DateTime(1980, 05, 10), "Dir1", "Juarez", "Chihuahua", 12345, "Mexico");
            Teacher[] teachers = { t1, t2, t3 };

            Course PCS = new Course("Programming with C#", 15, 6, teachers, students);
            Course PFS = new Course("Programming with F#", 12, 7, teachers, students);
            Course PJ = new Course("Programming with Java", 15, 5, teachers, students);
            Course[] courses = { PCS, PFS, PJ };
            Degree bachelor = new Degree("Bachelor", 500, courses);
            UProgram uprogram = new UProgram("Information Technology", "Mike Perez", bachelor);
            Console.WriteLine("Program: {0}\nDegree: {1}", uprogram.PName, uprogram.Degree.Name);
            Console.WriteLine("Course:{0}\nStudents in Course: {1}", uprogram.Degree.Courses[0].CName, Student.StudentAmt);
            foreach(Student student in PCS.Students)
            {
                student.TakeTest();
            }
            foreach (Teacher teacher in PCS.Teachers)
            {
                teacher.GradeTest();
            }

            Console.ReadKey();
            
        }
Esempio n. 2
0
 public UProgram(string programTitle, Degree degree)
 {
     ProgramTitle = programTitle;
     Degree = degree;
 }
Esempio n. 3
0
 public string getDegreeName(Degree d)
 {
     return(d.getDegreeName());
 }
Esempio n. 4
0
 //Method to add Degree
 public void addDegree(Degree d)
 {
     this.degreeInfo = d;
 }
Esempio n. 5
0
 public UProgram(string name, string departementHead, Degree degree = null)
 {
     Name            = name;
     DepartementHead = departementHead;
     Degree          = degree;
 }
Esempio n. 6
0
 public UProgram(string programName, Degree degree)
 {
     ProgramName = programName;
     Degree      = degree;
 }
Esempio n. 7
0
 public UProgram(string programTitle, Degree degree)
 {
     ProgramTitle = programTitle;
     Degree       = degree;
 }