// GET: Admin/category public ActionResult Index() { return(View(mngr.getAll())); }
public ActionResult Create() { ViewBag.Brands = bmngr.getAll(); ViewBag.Categories = cmngr.getAll(); return(View()); }