/// <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="RubricController"/> class.
 /// </summary>
 public RubricController()
 {
     this.repo = new RubricRepository();
 }