Example #1
0
 public async Task <ActionResult <bool> > Post([FromBody] CustomerReviewCreationDTO customerReviewCreationDTO)
 {
     return(await _customerReviewService.InsertAsync(customerReviewCreationDTO) != null);
 }
 public async Task <bool> CreateAsync(CustomerReviewCreationDTO customerReviewCreationDTO)
 {
     return(await _httpService.PostHelperAsync <CustomerReviewCreationDTO, bool>(CustomerReviewClientEndpoints.Base, customerReviewCreationDTO));
 }