Exemplo n.º 1
0
 public Repository(EmpContext _db)
 {
     this.db  = _db;
     dbEntity = db.Set <T>();
 }
Exemplo n.º 2
0
 public void Add(T entity)
 {
     context.Set <T>().Add(entity);
 }
Exemplo n.º 3
0
 public Repository()
 {
     this.db  = new EmpContext();
     dbEntity = db.Set <T>();
 }