Exemplo n.º 1
0
 public UnitOfWork()
 {
     _context = new MyDbContext();
 }
Exemplo n.º 2
0
 public GenericRepository(MyDbContext context)
 {
     _context   = new MyDbContext();
     _entitySet = context.Set <T>();
 }