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

            return(Ok(result));
        }