Exemplo n.º 1
0
 public void agregarDetalleTickt()
 {
     agregar.funcion = Convert.ToInt16(cmbfuncion.Text);
     agregar.asiento = Convert.ToInt16(cmbAsiento.Text);
     int datos = FuncionesDetalleTicket.IngresarDetalle(agregar);
 }
Exemplo n.º 2
0
 public void modificarRegistro()
 {
     actualizar.funcion = Convert.ToInt16(cmbfuncion.SelectedValue);
     actualizar.asiento = Convert.ToInt16(cmbAsiento.SelectedValue);
     FuncionesDetalleTicket.ActualizarTicket(actualizar);
 }
Exemplo n.º 3
0
 public void mostrarPeliculas()
 {
     dgvtickets.DataSource = FuncionesDetalleTicket.MostrarTicket();
 }