Exemple #1
0
 private void AgregarEstBoton_Click(object sender, EventArgs e)
 {
     EstudiantesBll.Guardar(new Entidades.Estudiantes()
     {
         EstudianteId = Convert.ToInt32(IdEsttextBox.Text),
         Nombres      = NombreEstudianteTextBox.Text
     });
     EstudiantesComboBox.DataSource = EstudiantesBll.GetLista();
 }
Exemple #2
0
        private void Guardarbutton_Click_1(object sender, EventArgs e)
        {
            Estudiantes estudiante;
            bool        paso = false;

            if (!Validar())
            {
                return;
            }

            estudiante = LlenaClase();

            if (IdnumericUpDown1.Value == 0)
            {
                paso = EstudiantesBll.Guardar(estudiante);
            }
            else
            {
                if (!ExisteEnBaseDeDatos())
                {
                    MessageBox.Show("LO SIENTO, no es posible modificar el estudiante, no existe", "Fallo", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    return;
                }
                paso = EstudiantesBll.Modificar(estudiante);
            }

            if (paso)
            {
                Limpiar();
                MessageBox.Show("Guardado con exito", "Existe,", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            else
            {
                MessageBox.Show("No se pudo guardar al Estudiante!!", "Fallo", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }