public IHttpActionResult Post(int id, [FromBody] CommentDto comment) { var result = _analyzeService.AddComment(id, comment); return(Ok(result)); }