Esempio n. 1
0
        public IActionResult Books()
        {
            var books = bookService.ShowBooks();

            ViewData["Genres"] = bookService.GetAllGenre();
            return(View(books));
        }