// GET: Admin/DanhMuc public ActionResult Index() { var DanhMucRepo = new DanhMucRepository(); var model = DanhMucRepo.ListAll(); return(View(model)); }
public void SetViewBag(int?selectedID = null) { var repo = new DanhMucRepository(); ViewBag.ID_DanhMuc = new SelectList(repo.ListAll(), "ID_DanhMuc", "TenDanhMuc", selectedID); }