Example #1
0
 public BlogPostList(IPostListCore postListCore = null)
 {
     PostListCore = postListCore ?? new PostListCore(CurrentBlog);
 }
Example #2
0
 public BlogPostList(IPostListCore postListCore = null)
 {
     PostListCore = postListCore ?? new PostListCore(CurrentBlog);
 }
Example #3
0
 public PostList(IPostListCore postListCore)
 {
     PostListCore = postListCore ?? new PostListCore(CurrentBlog);
 }
Example #4
0
 public PostList(IPostListCore postListCore, ICommentManager commentManager)
 {
     PostListCore   = postListCore ?? new PostListCore(CurrentBlog, null, null, null, null);
     CommentManager = commentManager ?? ServiceLocator.ServiceProvider.GetRequiredService <ICommentManager>();
 }