public ActionResult History() { SellPosting sellPosting = bookRepo.getHistory(Convert.ToInt32(Session["Id"])); if (sellPosting != null) { return(View(sellPosting)); } else { return(View("CheckOut")); } }