public IHttpActionResult Update(CustomerReview[] customerReviews)
        {
            foreach (var customerReview in customerReviews)
            {
                _customerReviewService.SaveCustomerReview(customerReview);
            }

            return(StatusCode(HttpStatusCode.NoContent));
        }