private void Guardarbutton_Click(object sender, EventArgs e) { Estudios estudios = new Estudios(); if(EstudioIdtextBox.TextLength == 0) { estudios.Nombre = NombreEstudiotextBox.Text; if (estudios.Insertar()) { MessageBox.Show("Estudio guardado","Mensaje",MessageBoxButtons.OK,MessageBoxIcon.Information); } else { MessageBox.Show("no se guardo el estudio","Alerta",MessageBoxButtons.OK,MessageBoxIcon.Error); } Limpiar(); } else { estudios.EstudioId = Convert.ToInt32(EstudioIdtextBox.Text); estudios.Nombre = NombreEstudiotextBox.Text; if (estudios.Editar()) { MessageBox.Show("Se edito correctamente","Mensaje",MessageBoxButtons.OK,MessageBoxIcon.Information); } else { MessageBox.Show("No se edito","Alerta",MessageBoxButtons.OK,MessageBoxIcon.Error); } Limpiar(); } }