public async Task <IActionResult> Edit(int id, [Bind("id,Nome,Classe,Preco_Custo,Preco_Final,Codigo_Barras,Fornecedor")] Estoques estoque) { if (id != estoque.id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(estoque); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!EstoqueExists(estoque.id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(estoque)); }
public async Task <IActionResult> Create([Bind("id,Nome,Classe,Preco_Custo,Preco_Final,Codigo_Barras,Fornecedor")] Estoques estoque) { if (ModelState.IsValid) { _context.Add(estoque); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(estoque)); }