public void agregarDetalleTickt()
 {
     try
     {
         agregar.funcion = Convert.ToInt16(cmbfuncion.Text);
         agregar.asiento = Convert.ToInt16(cmbAsiento.Text);
         int datos = FuncionesDetalleTicket.IngresarDetalle(agregar);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }
示例#2
0
 public void agregarDetalleTickt()
 {
     agregar.funcion = Convert.ToInt16(cmbfuncion.Text);
     agregar.asiento = Convert.ToInt16(cmbAsiento.Text);
     int datos = FuncionesDetalleTicket.IngresarDetalle(agregar);
 }