Пример #1
0
        public ActionResult History()
        {
            SellPosting sellPosting = bookRepo.getHistory(Convert.ToInt32(Session["Id"]));

            if (sellPosting != null)
            {
                return(View(sellPosting));
            }
            else
            {
                return(View("CheckOut"));
            }
        }