public DbCourseOfferingRepository(Lab5DbContext context)
 {
     _db = context;
 }
 /// <summary>
 ///     Initializes a new instance of the <see cref="DbStudentRepository" /> class.
 /// </summary>
 public DbStudentRepository(Lab5DbContext context)
 {
     _db = context;
 }
 /// <summary>
 ///     Initializes a new instance of the <see cref="DbCourseRepository" /> class.
 /// </summary>
 public DbCourseRepository(Lab5DbContext context)
 {
     _db = context;
 }