コード例 #1
0
 public GenericRepository(MeetingDbContext db)
 {
     this.db    = db;
     this.table = db.Set <T>();
 }
コード例 #2
0
 public GenericRepository()
 {
     this.db    = new MeetingDbContext();
     this.table = db.Set <T>();
 }
コード例 #3
0
 public AuthRepository(MeetingDbContext db)
 {
     this._db = db;
 }
コード例 #4
0
 public MeetingRepository(MeetingDbContext db)
 {
     this.db = db;
 }
コード例 #5
0
 public AttendeeRepository(MeetingDbContext db)
 {
     this.db = db;
 }