/// <summary>
 /// Initializes a new instance of the <see cref="GradeItemController"/> class.
 /// </summary>
 public GradeItemController()
 {
     this.rubricRepo = new RubricRepository();
     this.repo       = new GradeItemRepository();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CourseController"/> class.
 /// </summary>
 public CourseController()
 {
     this.repo      = new CourseGradeRepository();
     this.gradeRepo = new GradeItemRepository();
 }