Esempio n. 1
0
        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);
        }
Esempio n. 2
0
        public static bool FallidoIntentoAfiliacion(string tarjeta, string FL_IP)
        {
            bool flag = HelperLogons.IntentosValidate((long)0, tarjeta, string.Empty, FL_IP, "AFILUSU", 0);

            return(flag);
        }
Esempio n. 3
0
        public static bool ActivarUsuario(long AF_Id)
        {
            bool flag = HelperLogons.IntentosValidate(AF_Id, string.Empty, string.Empty, string.Empty, "RECCLV", 1);

            return(flag);
        }
Esempio n. 4
0
        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);
        }
Esempio n. 5
0
        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);
        }
Esempio n. 6
0
        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);
        }
Esempio n. 7
0
        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);
        }
Esempio n. 8
0
        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);
        }
Esempio n. 9
0
        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);
        }