public DepartamentoRep(ProdutoDbContext ctx) : base(ctx) { }
public ProdutoController(ProdutoDbContext dbContext) { _dbContext = dbContext; }
public ProdutosController() { db = new ProdutoDbContext(); }
public ProdutoRepository(ProdutoDbContext context) { this._context = context; }
public Repository(ProdutoDbContext ctx) { _ctx = ctx; _dbSet = _ctx.Set <T>(); }
public ProdutoRep(ProdutoDbContext ctx) : base(ctx) { }
public ProdutosController() { //instaância do contexto db = new ProdutoDbContext(); }
public ProdutoDal(ProdutoDbContext dbContext) { _dbContext = dbContext; }