Exemple #1
0
        public IHttpActionResult Post(int id, [FromBody] CommentDto comment)
        {
            var result = _analyzeService.AddComment(id, comment);

            return(Ok(result));
        }