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