private void materialRaisedButton1_Click(object sender, EventArgs e) { PersonaPacienteLogica nuevaLogica = new PersonaPacienteLogica(); int posiblePersona = nuevaLogica.CrearPersona(cedula: materialSingleLineTextField1.Text, nombre: materialSingleLineTextField2.Text, apellidoUno: materialSingleLineTextField3.Text, apellidoDos: materialSingleLineTextField4.Text); if (posiblePersona == 0) { MessageBox.Show(@"Paciente guardado"); Expediente movimientoPagina = new Expediente(); Close(); Hide(); movimientoPagina.ShowDialog(); } else { if (posiblePersona == 1) { MessageBox.Show(@"Error de sistema por favor, intente de nuevo"); materialSingleLineTextField1.Text = ""; materialSingleLineTextField2.Text = ""; materialSingleLineTextField3.Text = ""; materialSingleLineTextField4.Text = ""; } else { MessageBox.Show(@"Cedula ya existente por favor intente otra"); materialSingleLineTextField1.Text = ""; materialSingleLineTextField2.Text = ""; materialSingleLineTextField3.Text = ""; materialSingleLineTextField4.Text = ""; } } }
private void LstExpediente_SelectedIndexChanged(object sender, EventArgs e) { Expediente ex = new Expediente(); ex.ShowDialog(); }
private void btnExpediente_Click(object sender, EventArgs e) { Expediente expediente = new Expediente(); expediente.Show(); }