Example #1
0
 public IActionResult AddBook(string isbn = "", string title = "", string authors = "", int copies = 1)
 {
     return(View(new AddBookViewModel(isbn, title, authors, copies, libraryService.BookExists(isbn))));
 }