private void Btnagregar_Click(object sender, EventArgs e) { try { Boleto mBoleto = new Boleto(); mBoleto.id = int.Parse(Txtid.Text); mBoleto.Precio = float.Parse(Txtpecio.Text); mBoleto.tipo = Txttipo.Text; ControlBoleto mControl = new ControlBoleto(); mControl.agregarBoleto(mBoleto); MessageBox.Show("Se ha agregado el boleto exitosamente"); } catch (Exception) { MessageBox.Show("Error al agregar"); } }
private void Btnmodificar_Click(object sender, EventArgs e) { try { Boleto mBoleto = new Boleto(); int ID = (int)Tboleto.SelectedRows[0].Cells[0].Value; mBoleto.id = ID; mBoleto.Precio = float.Parse(Txtpecio.Text); mBoleto.tipo = Txttipo.Text; ControlBoleto mControl = new ControlBoleto(); mControl.agregarBoleto(mBoleto); MessageBox.Show("Se ha modificado el boleto exitosamente"); } catch (Exception) { MessageBox.Show("Error al modificar."); } }