コード例 #1
0
        public IActionResult GetById(int reviewId)
        {
            var singleProduct = _repo.GetByReviewId(reviewId);

            if (singleProduct == null)
            {
                return(NotFound("No Product with that ID was found"));
            }
            return(Ok(singleProduct));
        }