public IActionResult Books() { var books = bookService.ShowBooks(); ViewData["Genres"] = bookService.GetAllGenre(); return(View(books)); }