예제 #1
0
 // GET: Admin/ProductGroups/Create
 public ActionResult Create()
 {
     ViewBag.Features      = _repo.GetFeatures();
     ViewBag.Brands        = _repo.GetBrands();
     ViewBag.ProductGroups = _repo.GetProductGroups();
     return(View());
 }
예제 #2
0
 public ActionResult Create()
 {
     ViewBag.ProductGroups = _pgRepo.GetProductGroups();
     return(View());
 }