Exemplo n.º 1
0
 public async Task <ActionResult <bool> > Post([FromBody] CustomerReviewCreationDTO customerReviewCreationDTO)
 {
     return(await _customerReviewService.InsertAsync(customerReviewCreationDTO) != null);
 }