public async Task <IActionResult> Edit(int id, [Bind("ID,Name")] Wine wine) { if (id != wine.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(wine); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!WineExists(wine.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(wine)); }
public async Task <IActionResult> Edit(int id, [Bind("ID,Name,Age,Gender,Email,WineID,RateListID")] Customer customer) { if (id != customer.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(customer); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CustomerExists(customer.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(customer)); }