示例#1
0
        public JsonResult GetPrice(int ProductId, int Discount, int Quantity)
        {
            Product product = orderDetailService.GetProductById(ProductId);

            return(Json(orderDetailService.CalculateMoney(product.PricePerUnit, Discount, Quantity)));
        }