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); } }
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); } }