Пример #1
0
        // POST api/comment
        public void Post([FromBody] PostCommentModel comment)
        {
            var newComment = new CommentsModel();

            newComment.SaveComment(comment);
        }