Пример #1
0
 public ActionResult GetProducts(int categoryId, string categoryName, int subCategoryId, string subCategoryName)
 {
     ViewBag.CategoryName    = categoryName;
     ViewBag.CategoryId      = categoryId;
     ViewBag.SubCategoryName = subCategoryName;
     ViewBag.SubCategoryId   = subCategoryId;
     return(View(objProductBO.GetProducts(categoryId, subCategoryId)));
 }
Пример #2
0
 // GET: /Admin/Product/
 public ActionResult Index()
 {
     ViewBag.Category    = new SelectList(objCategoryBO.GetCategories(true), "PKCategoryId", "CategoryName");
     ViewBag.SubCategory = new SelectList(objSubCategoryBO.GetSubCategories(0, true), "PKSubCategoryId", "SubCategoryName");
     return(View(objProductBO.GetProducts()));
 }