public StudentController() { this.courseDAL = new CourseDAL(); this.gradesDAL = new GradeItemDAL(); this.rubricDAL = new RubricDAL(); this.studentDAL = new StudentDAL(); }
public TeacherController() { this.courseDAL = new CourseDAL(); this.gradeItemDAL = new GradeItemDAL(); this.rubricDAL = new RubricDAL(); this.weightTypeDAL = new WeightTypeDAL(); this.studentDAL = new StudentDAL(); }
public CourseController() { this.CourseDAL = new CourseDAL(); this.RubricDAL = new RubricDAL(); this.WeightTypeDAL = new WeightTypeDAL(); }