public ActionResult Index()
        {
            var books = _bookFacade.GetAllBooks();

            return(View(books));
        }