public void AddComment(int postId, string text, int userId) { var cm = new CommentMapper(); cm.AddComment(postId, text, userId); }