コード例 #1
0
ファイル: BlogController.cs プロジェクト: Hofmanix/czsharp
 public IActionResult Index(int page = 1)
 {
     return(View(new ArticlesViewModel
     {
         Articles = articlesRepository.FindPage(page),
         ArticlesCount = articlesRepository.FindAll().Count(),
         ActivePage = page
     }));
 }