예제 #1
0
 public IRepository(GiaoHangGiaReDbContext db)
 {
     _db    = db;
     _table = _db.Set <T>();
 }
예제 #2
0
 public IRepository()
 {
     _db    = new GiaoHangGiaReDbContext();
     _table = _db.Set <T>();
 }