public IHttpActionResult UpdateVotes(CustomerReviewVote[] customerReviewVotes)
 {
     _customerReviewService.SaveCustomerReviewVotes(customerReviewVotes);
     return(StatusCode(HttpStatusCode.NoContent));
 }