public RepositoryBase(ProAgilEmpresaContext Context)
 {
     Db    = Context;
     DbSet = Db.Set <TEntity>();
 }
Beispiel #2
0
 public UnityOfWork(ProAgilEmpresaContext context)
 {
     _context = context;
 }
 public ProdutoRepository(ProAgilEmpresaContext context) : base(context)
 {
     this.context = context;
 }