Example #1
0
 public Course(string cName, int credits, int weeks, Teacher[] teacher = null, Student[] students = null)
 {
     this.CName = cName;
     this.Credits = credits;
     this.Weeks = weeks;
     this.Teacher = teacher;
     this.Students = students;
 }
Example #2
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);
            Console.ReadKey();
            
        }
Example #3
0
        public Course(string courseTitle, Student[] student, Teacher[] teacher)
        {
            this.CourseTitle = courseTitle;

            if(student.Length <= 3)
            {
                Array.Copy(student, this._student, student.Length);
            }

            else
            {
                throw new Exception("Course can have a max of 3 students.");
            }

            if(teacher.Length <=3)
            {
                Array.Copy(teacher, this._teacher, teacher.Length);
            }

            else
            {
                throw new Exception("Course can have a max of 3 teachers and/or aides.");
            }
        }