示例#1
0
        public JsonResult ChangePassWord(string userName, string passWord)
        {
            PhongBanBussinessService phongBanBussinessService = new PhongBanBussinessService();
            bool check = phongBanBussinessService.ChangePassWord(userName, passWord, this.CurrentUser.Name);

            return(Json(!check, JsonRequestBehavior.AllowGet));
        }