public ActionResult Edit(HangHoa hh)
        {
            var dao = new HangHoaDao();

            hh.NgayNhap = DateTime.Now;
            var id = dao.Edit(hh);

            if (id == true)
            {
                SetAlert("Cập nhật hàng thành công", "success");
                return(RedirectToAction("Index", "HangHoa"));
            }
            else
            {
                return(RedirectToAction("Edit", "HangHoa"));
            }
        }