private void btnEnviar_Click(object sender, EventArgs e) { if (txtNombre.Text == "") { MessageBox.Show("Debe ingresar el nombre del colegio", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } if (((cboDep.Text == "") || (txtPais.Text == ""))) { MessageBox.Show("Debe ingresar un pais y un departamento", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } SolicitudColegio sol = new SolicitudColegio(txtNombre.Text, txtTelefono.Text, txtObservacion.Text, txtPais.Text, cboDep.Text, cbProvincia.Text); solicitudColegioDA.registrarSolicitudColegio(sol); }
public bool registrarSolicitudColegio(SolicitudColegio S) { return(solicitudColegioDA.registrarSolicitudColegio(S)); }