private void Button1_Click(object sender, EventArgs e) { Factura factura = new Factura(this.lblImporte.Text, this.lblIva.Text, "", this.lblTotal.Text, true, this.nupCantidad.Value, this.txtHonorario.Text); }
public Entrada(string archivo) { this.InitializeComponent(); Factura factura = new Factura(archivo); }
private void Button1_Click(object sender, EventArgs e) { Factura factura = new Factura(this.txtPrecioInmueble.Text, "0", "0", this.lblImporte.Text, false, decimal.Zero, null); }
private void btnFacturar_Click(object sender, EventArgs e) { Factura factura = new Factura(this.lblIngreso.Text, this.lblIva.Text, this.lblRetencion.Text, this.lblTotal.Text, false, decimal.Zero, null); }