Beispiel #1
0
        public void AddComment(int postId, string text, int userId)
        {
            var cm = new CommentMapper();

            cm.AddComment(postId, text, userId);
        }