Exemplo n.º 1
0
 //Adding items into basket/cart.
 //If same product then increase qty, otherwise add into basket.
 public ActionResult AddInBasket(string ProductId)
 {
     BasketService.AddProductInBasket(this.HttpContext, ProductId);
     return(RedirectToAction("Index"));
 }