コード例 #1
0
        public void RemoveComment(Guid commentID)
        {
            var c = dao.RemoveComment(commentID);

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