Example #1
0
        //Phương thức cập nhật dữ liệu bảng Khoa
        public bool UpdateUser(UsersDTO dtoUsers)
        {
            dalUsers = new UsersDAL();

            try
            {
                return dalUsers.UpdateUser(dtoUsers);
            }
            catch (Exception)
            {
                throw;
            }
        }