예제 #1
0
 public BlogCommentsList(ICommentsListCore commentsListCore = null)
 {
     CommentsListCore = commentsListCore ?? new CommentsListCore(CurrentBlog, CurrentEntry);
 }
예제 #2
0
 public CommentsList(ICommentsListCore commentsListCore)
 {
     CommentsListCore = commentsListCore ?? new CommentsListCore(CurrentBlog, CurrentEntry);
     Comments = new CommentItem[0];
 }
예제 #3
0
 public CommentsList(ICommentsListCore commentsListCore)
 {
     CommentsListCore = commentsListCore ?? new CommentsListCore(CurrentBlog, CurrentEntry);
     Comments         = new CommentItem[0];
 }
예제 #4
0
 public CommentsList(ICommentsListCore commentsListCore, ICommentManager commentManager)
 {
     CommentsListCore = commentsListCore ?? new CommentsListCore(CurrentBlog, CurrentEntry);
     CommentManager   = commentManager ?? ManagerFactory.CommentManagerInstance;
     Comments         = new CommentContent[0];
 }
예제 #5
0
 public BlogCommentsList(ICommentsListCore commentsListCore = null)
 {
     CommentsListCore = commentsListCore ?? new CommentsListCore(CurrentBlog, CurrentEntry);
 }