Пример #1
0
        public CategoryModel()
        {
            PictureModel       = new PictureModel();
            FeaturedPosts      = new List <PostOverviewModel>();
            Posts              = new List <PostOverviewModel>();
            SubCategories      = new List <SubCategoryModel>();
            CategoryBreadcrumb = new List <CategoryModel>();

            PagingFilteringContext = new PostsPagingFilteringModel();
        }
Пример #2
0
 public PostsByTagModel()
 {
     Posts = new List <PostOverviewModel>();
     PagingFilteringContext = new PostsPagingFilteringModel();
 }
Пример #3
0
 public SearchModel()
 {
     PagingFilteringContext = new PostsPagingFilteringModel();
     Posts = new List <PostOverviewModel>();
 }