private bool ChangePasswordAndEnable(string password, int userId)
 {
     try
     {
         _loginBusiness.ChangePasswordAndEnable(CommonBusiness.EncryptPass(password), userId);
         return(true);
     }
     catch
     {
         return(false);
     }
 }