public async Task <IActionResult> Checkout(int id, [Bind("BookId,Name,Author,Year,BorrowerId")] Book book) { if (id != book.BookId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(book); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!BookExists(book.BookId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["BorrowerId"] = new SelectList(_context.Borrower, "Id", "Name", book.BorrowerId); return(View(book)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Name,Age,Phone")] Borrower borrower) { if (id != borrower.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(borrower); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!BorrowerExists(borrower.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(borrower)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,FirstName,LastName")] Author author) { if (id != author.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(author); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!AuthorExists(author.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(author)); }
public async Task <IActionResult> Edit([Bind("Name")] Genre genre) { if (ModelState.IsValid) { try { _context.Update(genre); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!GenreExists(genre.Name)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(genre)); }