public async Task <IActionResult> PutCargo(int id, Cargo cargo) { if (id != cargo.ID_cargo) { return(BadRequest()); } _context.Entry(cargo).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CargoExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutTiendaItem(int id, TiendaItem tiendaItem) { if (id != tiendaItem.Id) { return(BadRequest()); } _context.Entry(tiendaItem).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TiendaItemExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> Create([Bind("Id,Nombre,Descripcion,Cantidad")] Producto producto) { if (ModelState.IsValid) { _context.Add(producto); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(producto)); }