예제 #1
0
 public async Task <IActionResult> Index(int?pageId)
 {
     return(View(await productsViewModelService.GetProducts(pageId ?? 0, Constants.ITEMS_PER_PAGE)));
 }
예제 #2
0
 public async Task OnGet(int?pageId)
 {
     ProductsModel = await productsViewModelService.GetProducts(pageId ?? 0, Constants.ITEMS_PER_PAGE);
 }