public void OnGet(ProductCategorySearchModel searchModel) { ProductCategories = _productCategoryApplication.Search(searchModel); }
public void OnGet(string name) { ProductCategories = _productCategoryApplication.Search(name); }
public void OnGet(int id) { Categories = new SelectList(_productCategoryApplication.Search(""), "Id", "Name"); EditProduct = _productApplication.GetDetails(id); }
public void OnGet() { Categories = new SelectList(_productCategoryApplication.Search(""), "Id", "Name"); }