Exemplo n.º 1
0
        private void btndni_Click(object sender, EventArgs e)
        {
            int          dni  = Convert.ToInt32(txtdni.Text);
            PagoCursoDAL pago = new PagoCursoDAL();

            pago.Buscarcarga(dni, dataGridViewX1); //AlumnoDAL.Buscar(dataGridViewX1);
        }
Exemplo n.º 2
0
        private void btnGuardar_Click(object sender, EventArgs e)
        {
            if (txtdni.Text == "")
            {
                MessageBox.Show("Debe llenar todos los Campos", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
            else
            {
                PagoCurso Pago = new PagoCurso();
                Pago.Idpago      = txtidpago.Text;
                Pago.Numerogrupo = txtnumerogrupo.Text;
                Pago.Idcurso     = txtidcurso.Text;
                Pago.Dni         = Convert.ToInt32(txtdni.Text);
                Pago.Monto       = Convert.ToDecimal(txtmonto.Text);
                Pago.Cuenta      = Convert.ToDecimal(txtcuenta.Text);
                Pago.Fecha       = DateTime.Today.ToShortDateString();// monthCalendarAdv1.SelectedDate.ToShortDateString();
                Pago.Nrorecibo   = txtnumerorecibo.Text;
                Pago.Estado      = txtestado.Text;
                Pago.Observacion = txtobservacion.Text;


                int resultado = PagoCursoDAL.AgregarPagocurso(Pago);

                if (resultado > 0)
                {
                    MessageBox.Show("Datos Guardados Corerectamente", "Datos Guardado", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    //btnlimpiar();
                }

                else
                {
                    MessageBox.Show("No se pudieron Guardar lo datos", "Error al Guardar", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
            }
        }
Exemplo n.º 3
0
        private void btnguardar_Click_1(object sender, EventArgs e)
        {
            if (txtdni.Text == "")
            {
                MessageBox.Show("Debe llenar todos los Campos", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
            else
            {
                Matricula Matricula = new Matricula();
                Matricula.Numerogrupo = txtnumerogrupo.Text; //cbnumerogrupo.Text;
                Matricula.Idcurso     = txtidcurso.Text;     //cbidcurso.Text;
                Matricula.Dni         = Convert.ToInt32(txtdni.Text);
                Matricula.Fecha       = Convert.ToString(DateTime.Today.ToShortDateString());

                int resultado = MatriculaDAL.AgregarMatricula(Matricula);

                Random ran        = new Random();
                int    cualquiera = ran.Next(10000);
                //MessageBox.Show(Convert.ToString(DateTime.Today.ToShortDateString()));
                //("alu" + DateTime.Today.ToShortDateString() + DateTime.Today.Second.ToString() + cualquiera);

                decimal   cuenta = 0;
                PagoCurso Pago   = new PagoCurso();
                Pago.Idpago      = "alu" + DateTime.Today.ToShortDateString() + DateTime.Today.Second.ToString() + cualquiera; // txtidpago.Text;
                Pago.Numerogrupo = txtnumerogrupo.Text;
                Pago.Idcurso     = txtidcurso.Text;
                Pago.Dni         = Convert.ToInt32(txtdni.Text);
                Pago.Monto       = Convert.ToDecimal(txtcostocurso.Text); // Convert.ToDecimal(txtmonto.Text);
                Pago.Cuenta      = cuenta;                                // Convert.ToDecimal(txtcuenta.Text);
                Pago.Fecha       = DateTime.Today.ToShortDateString();    // monthCalendarAdv1.SelectedDate.ToShortDateString();
                Pago.Nrorecibo   = "0";                                   //txtnumerorecibo.Text;
                //Pago.Estado = txtestado.Text;
                //Pago.Observacion = txtobservacion.Text;


                //int resultado =
                PagoCursoDAL.AgregarPagocurso(Pago);
                //PersonaDAL.AgregarPersona(Persona);

                if (resultado > 0)
                {
                    MessageBox.Show("Datos Guardados Corerectamente", "Datos Guardado", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    //btnlimpiar();
                }

                else
                {
                    MessageBox.Show("No se pudieron Guardar lo datos", "Error al Guardar", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
            }
        }