コード例 #1
0
        public void OnGet()
        {
            this.NewsSnippets = newsSnippetRepository.GetAllNewsSnippets().ToList();


            while (NewsSnippets.Count > 6)
            {
                NewsSnippets.RemoveAt(0);
            }
        }
コード例 #2
0
 public void OnGet()
 {
     this.NewsSnippets = newsSnippetRepository.GetAllNewsSnippets().ToList();
 }