コード例 #1
0
        public async Task <IActionResult> AddCommentAsync([FromRoute] string publicationId, [FromRoute] string sectionId, [FromBody] string comment)
        {
            await _reviewService.AddCommentAsync(publicationId, sectionId, comment);

            return(Ok());
        }