Ejemplo n.º 1
0
 public UnitOfWork()
 {
     _context = new SpxProductsContext();
 }
Ejemplo n.º 2
0
 public GenericRepository(SpxProductsContext context)
 {
     this.Context = context;
     this.DbSet   = context.Set <TEntity>();
 }