public async Task <IActionResult> AddCommentAsync([FromRoute] string publicationId, [FromRoute] string sectionId, [FromBody] string comment) { await _reviewService.AddCommentAsync(publicationId, sectionId, comment); return(Ok()); }