public async Task <IActionResult> Edit(int id, [Bind("Id,Nome,Quantidade,DataPedido,Valor")] Produto produto) { if (id != produto.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(produto); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProdutoExists(produto.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(produto)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Nome,Endereco,Cep,Bairro,Cidade,Estado,Telefone")] Fornecedores fornecedores) { if (id != fornecedores.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(fornecedores); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!FornecedoresExists(fornecedores.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(fornecedores)); }