public async Task <IActionResult> Edit(int id, [Bind("Id,Name,Address,Phone")] Cinema cinema) { if (id != cinema.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(cinema); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CinemaExists(cinema.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(cinema)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Name")] Hall hall) { if (id != hall.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(hall); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!HallExists(hall.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(hall)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Title,Release_date,Adult,Description,Origin,Poster_path")] Movie movie) { if (id != movie.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(movie); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!MovieExists(movie.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(movie)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,price,Discount")] Ticket ticket) { if (id != ticket.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(ticket); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TicketExists(ticket.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(ticket)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Date,Language,Subtitles")] Performance performance) { if (id != performance.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(performance); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PerformanceExists(performance.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(performance)); }