Beispiel #1
0
        private void Buscarbutton_Click(object sender, EventArgs e)
        {
            int id;
            RepositorioBase <Ventas> db = new RepositorioBase <Ventas>();
            Ventas venta = new Ventas();

            int.TryParse(VentaIdnumericUpDown.Value.ToString(), out id);
            Limpiar();

            if (id == 0)
            {
                cVentas frm = new cVentas(1);
                frm.ShowDialog();
                if (frm.idElegido > 0)
                {
                    venta = db.Buscar(frm.idElegido);

                    LlenaCampo(venta);
                }
            }
            else
            {
                venta = db.Buscar(id);

                if (venta != null)
                {
                    LlenaCampo(venta);
                }
                else
                {
                    MessageBox.Show("Usuario no existe");
                }
            }
        }
Beispiel #2
0
        private void ConsultarVenta_button_Click(object sender, EventArgs e)
        {
            cVentas cv = new cVentas();

            cv.ShowDialog();
        }
Beispiel #3
0
        private void BuscarButton_Click(object sender, EventArgs e)
        {
            cVentas cv = new cVentas();

            cv.ShowDialog();
        }