Example #1
0
        public ActionResult Index()
        {
            var model = (User)Session["Id"];

            var view = BusinessLogic.LoadOrdersAndCarts(_db.GetAllOrder(model.Id));

            return(View(view));
        }