Esempio n. 1
0
        public override bool Validar()
        {
            string mensaje = ValidacionesNegocio.EsPersona(txtApellido.Text, txtNombre.Text, txtTelefono.Text, txtDireccion.Text, /*txtIDPlan.Text,*/ txtLegajo.Text, txtEmail.Text);

            if (mensaje != "")
            {
                Notificar(mensaje, MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                return(false);
            }
            else
            {
                return(true);
            }
        }
Esempio n. 2
0
        public override bool Validar()
        {
            string mensaje = ValidacionesNegocio.EsUsuario(txtNombre.Text, txtApellido.Text, txtEmail.Text, txtClave.Text, txtConfirmarClave.Text);

            if (mensaje != "")
            {
                Notificar(mensaje, MessageBoxButtons.OK, MessageBoxIcon.Error);
                return(false);
            }
            else
            {
                return(true);
            }
        }