コード例 #1
0
ファイル: CartController.cs プロジェクト: RaphaelVM/drossdrop
        public IActionResult AddToCart(int userId, int productId)
        {
            cartHandler.AddProductToCart(userId, productId);

            return(RedirectToAction("Index", "Cart", new { userId }));
        }