public static bool ActualizarClaveTransacciones(long AF_Id, string AF_PasswordOld, string AF_PasswordNew, string FL_IP, int sCod) { bool flag = HelperLogons.PasswordUpdate(AF_Id, AF_PasswordOld, AF_PasswordNew, 0, FL_IP, "CLVTRAN", sCod); return(flag); }
public static bool FallidoIntentoAfiliacion(string tarjeta, string FL_IP) { bool flag = HelperLogons.IntentosValidate((long)0, tarjeta, string.Empty, FL_IP, "AFILUSU", 0); return(flag); }
public static bool ActivarUsuario(long AF_Id) { bool flag = HelperLogons.IntentosValidate(AF_Id, string.Empty, string.Empty, string.Empty, "RECCLV", 1); return(flag); }
public static bool ActualizarClaveLogin(long AF_Id, string AF_PasswordOld, string AF_PasswordNew, int AF_DiasPassword, string FL_IP, int sCod) { bool flag = HelperLogons.PasswordUpdate(AF_Id, AF_PasswordOld, AF_PasswordNew, AF_DiasPassword, FL_IP, "CLVLOGIN", sCod); return(flag); }
public static bool ValidarRespuestaDesafioFavorito(long AF_Id, bool fallido, bool eliminarintento, string FL_IP, int sCod) { bool flag = HelperLogons.IntentosValidate(AF_Id, (fallido ? "1" : "0"), (eliminarintento ? "1" : "0"), FL_IP, "FAVORITO", sCod); return(flag); }
public static bool ValidarRespuestaDesafio(long AF_Id, string AF_RespuestaPD, string FL_IP, int sCod) { bool flag = HelperLogons.IntentosValidate(AF_Id, string.Empty, CryptoUtils.EncryptMD5(AF_RespuestaPD), FL_IP, "RESPDESA", sCod); return(flag); }
public static bool ValidarIntentoRecuparecionCLVFALLIDO(long AF_Id, string tarjeta, string FL_IP) { bool flag = HelperLogons.IntentosValidate(AF_Id, tarjeta, "1", FL_IP, "RECCLV", 0); return(flag); }
public static bool ValidarIntentoAfiliacion(string tarjeta, string clvesp, string FL_IP) { bool flag = HelperLogons.IntentosValidate((long)0, tarjeta, clvesp, FL_IP, "VALUSUESP", 0); return(flag); }
public static bool ValidarClaveTransacciones(long AF_Id, string AF_Password, string FL_IP, int sCod) { bool flag = HelperLogons.IntentosValidate(AF_Id, CryptoUtils.EncryptMD5(AF_Password), string.Empty, FL_IP, "CLVTRAN", sCod); return(flag); }