Exemplo n.º 1
0
 public GenericRepository(MeetingDbContext db)
 {
     this.db    = db;
     this.table = db.Set <T>();
 }
Exemplo n.º 2
0
 public GenericRepository()
 {
     this.db    = new MeetingDbContext();
     this.table = db.Set <T>();
 }
Exemplo n.º 3
0
 public AuthRepository(MeetingDbContext db)
 {
     this._db = db;
 }
Exemplo n.º 4
0
 public MeetingRepository(MeetingDbContext db)
 {
     this.db = db;
 }
Exemplo n.º 5
0
 public AttendeeRepository(MeetingDbContext db)
 {
     this.db = db;
 }