// GET: Books public ActionResult Index() { var books = DAL.GetAllBooks(); return(View(books.ToList())); }