public async Task <IActionResult> Edit(int id, [Bind("Id,Zipcode,Amount,Date")] Visitors visitors) { if (id != visitors.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(visitors); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!VisitorsExists(visitors.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(visitors)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Naam,Password")] Sponsor sponsor) { if (id != sponsor.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(sponsor); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!SponsorExists(sponsor.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(sponsor)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,ParkingName,Amount,Date")] Parking parking) { if (id != parking.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(parking); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ParkingExists(parking.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(parking)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Transactions,Recieved_Points,Exchanche_Points,Date")] Roos24 roos24) { if (id != roos24.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(roos24); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!Roos24Exists(roos24.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(roos24)); }