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

            return(Ok(result));
        }