public async Task <IActionResult> Edit(int id, [Bind("Id,Model,Maker,RegistrationNumber,RentPerDay")] Bike bike) { if (id != bike.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(bike); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!BikeExists(bike.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(bike)); }
public async Task <IActionResult> Edit(int id, [Bind("id,IssueDate")] Rental rental) { if (id != rental.id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(rental); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!RentalExists(rental.id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(rental)); }
public async Task <IActionResult> Edit(int id, [Bind("id,FirstName,LastName,Address,Phone,LicenseNo")] 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)); }