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