Exemplo n.º 1
0
        public ActionResult AddProduct(int productID)
        {
            SessionHelper session = new SessionHelper();

            ViewBag.qty = session.GetProductQty(productID);
            ViewBag.qty = cartRepo.GetProductQty(session.SessionID, productID);
            return(View(cartRepo.GetProduct(productID)));
        }