Example #1
0
 public ActionResult Cart()
 {
     CartServiceClient order = new CartServiceClient();
     IEnumerable<kaspi.lab.CartService.ProductDTO> cartList = order.GetCart(User.Identity.Name).AsEnumerable();
     return View(cartList);
 }