示例#1
0
 public void OnGet(string searchString, int pageIndex = 1)
 {
     ProductIndexVm  = _productService.GetProductListVm1(SearchString, categoryGenre, pageIndex);
     CategoryIndexVm = _pro.GetCategoryListVm("", "", pageIndex);
 }
示例#2
0
 public void OnGet(string searchString, int pageIndex = 1)
 {
     CategoryIndexVM = _CategoryService.GetCategoryListVm(SearchString, CategoryGenre, pageIndex);
 }
示例#3
0
 public IActionResult OnGet()
 {
     CategoryIndexVM = _categoryService.GetCategoryListVm("", "", 1);
     return(Page());
 }