private void button1_Click(object sender, EventArgs e)
        {
            var mensaje = Funciones.insertar(textBox1.Text, textBox2.Text);

            MessageBox.Show(mensaje);
        }
Ejemplo n.º 2
0
 private void button1_Click(object sender, EventArgs e)
 {
     dataGridView1.DataSource = Funciones.mostrarVentas();
 }
        private void button1_Click(object sender, EventArgs e)
        {
            var mensaje = Funciones.eliminarPersiana(Int32.Parse(textBox3.Text));

            MessageBox.Show(mensaje);
        }