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