public ActionResult DashBoard()
 {
     //displaying books in best seller section and recommended section
     return(View(new Tuple <List <Book>, List <Book> >(BookCRUD.BestSellers(), BookCRUD.UserRecommendations((int)Session["UserID"]))));
 }