public ActionResult Index() { BookBL bookContext = new BookBL(); IEnumerable <Book> books = bookContext.GetBooks(); return(View(books)); }