示例#1
0
        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));
        }
示例#2
0
        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));
        }