Ejemplo n.º 1
0
 public Repository(EmpresasContext context)
 {
     Context     = context;
     EntitiesSet = Context.Set <T>();
 }
Ejemplo n.º 2
0
 public BaseRepository(EmpresasContext context)
 {
     this.context = context;
     dbSet        = context.Set <TEntity>();
 }