Exemple #1
0
        public IHttpActionResult ProductRating(string productId)
        {
            double?ratings = _customerReviewService.GetProductsRating(productId);

            return(Ok(ratings));
        }