Пример #1
0
        public static bool CreateComment(string text, Blogs blog, Users user)
        {
            Comments comment = new Comments(user.Nickname, text);

            return(_commentsLogic.CreateComment(comment, blog));
        }