示例#1
0
        public async Task <ActionResult> UpdateVotes([FromBody] CustomerReviewVote[] customerReviewVotes)
        {
            await _customerReviewService.UpdateVotesAsync(customerReviewVotes);

            return(Ok());
        }