コード例 #1
0
ファイル: HomeController.cs プロジェクト: crystron/dotNet-web
        public ActionResult DanhMucTimKiem(int id)
        {
            DanhMucDAO danhMucDAO = new DanhMucDAO();

            return(PartialView(danhMucDAO.Find(id)));
        }
コード例 #2
0
        public ActionResult Edit(int id)
        {
            DanhMucDAO danhMucDAO = new DanhMucDAO();

            return(View(danhMucDAO.Find(id)));
        }