示例#1
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="DbStudentRepository" /> class.
 /// </summary>
 public DbStudentRepository(Lab8DbContext context)
 {
     _db = context;
 }
示例#2
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="DbCourseRepository" /> class.
 /// </summary>
 public DbCourseRepository(Lab8DbContext context)
 {
     _db = context;
 }
 public DbCourseOfferingRepository(Lab8DbContext context)
 {
     _db = context;
 }