// GET: HocVien/Info

        public ActionResult Index()
        {
            var dao = new HocVienDAO();

            global::Models.Framework.HocVien model = dao.FindByTDN(User.Identity.Name);

            return(View(model));
        }
        public ActionResult Edit(global::Models.Framework.HocVien hv)
        {
            var dao = new HocVienDAO();

            try
            {
                dao.Update(hv, User.Identity.Name);
                TempData["testmsg"] = " Cập nhật thành công ";

                return(RedirectToAction("Index", "Info"));
            }
            catch (Exception e)
            {
                TempData["testmsg"] = "Có lỗi trong quá trình cập nhật: " + e.Message.ToString();
            }
            return(View("Index"));
        }