Example #1
0
 public Repository(hmsDbContext db)
 {
     _db        = db;
     this.dbSet = _db.Set <T>();
 }
Example #2
0
 public ModelSql(hmsDbContext _db)
 {
     this.db    = _db;
     this.dbSet = _db.Set <T>();
 }