Ejemplo n.º 1
0
 public ProdutoFactory(SistemaUnibenContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public BaseRepository()
 {
     Context = _contextManager.GetContext();
     DbSet   = Context.Set <TEntity>();
 }
Ejemplo n.º 3
0
 public UnitOfWork()
 {
     _context = _contextManager.GetContext();
 }
Ejemplo n.º 4
0
 public EmpresaFactory(SistemaUnibenContext context)
 {
     _context = context;
 }