Esempio n. 1
0
        public void UpdateComment(Guid commentID, string text)
        {
            var c = dao.UpdateComment(commentID, text);

            if (c != null)
            {
                var b = GetCommentBookmark(c);
                if (b != null)
                {
                    SendCommentUpdates(c, b);
                    BookmarkingUserActivityPublisher.BookmarkCommentUpdated(c, b);
                }
            }
        }