Beispiel #1
0
        public void OnGet()
        {
            Model = new DisplayManyArticlesModel {
                Articles = new List <DisplayArticleModel>()
            };

            GetPublishedArticlesForCategory();
            Page();
        }
Beispiel #2
0
        public IndexModel(IArticleService articleService, IUserService userService)
        {
            _articleService = articleService;
            _userService    = userService;

            Model = new DisplayManyArticlesModel {
                Articles = new List <DisplayArticleModel>()
            };
        }