public string GetTotalCommentCount()
        {
            CommentCollection commentList = new CommentCollection();

            commentList.GetMulti(null);
            return(commentList.Count.ToString());
        }
        public CommentCollection GetCommentList()
        {
            CommentCollection commentList = new CommentCollection();

            commentList.GetMulti(null);
            return(commentList);
        }
 public string GetTotalCommentCount()
 {
     CommentCollection commentList = new CommentCollection();
     commentList.GetMulti(null);
     return commentList.Count.ToString();
 }
 public CommentCollection GetCommentList()
 {
     CommentCollection commentList = new CommentCollection();
     commentList.GetMulti(null);
     return commentList;
 }