public async Task <ActionResult <Produto> > DeleteProduto([FromBody] Produto produto) { try { _context.Remove(produto); await _context.SaveChangesAsync(); return(Json(await _context.Produtos.OrderByDescending(p => p.Id).ToListAsync()));; } catch (Exception ex) { return(BadRequest(ex)); } }
public void Remove(TEntity entity) { QuickBuyContext.Remove(entity); QuickBuyContext.SaveChanges(); }
public void Remover(T entity) { _quickBuyContext.Remove(entity); _quickBuyContext.SaveChanges(); }