示例#1
0
 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);
 }
示例#2
0
 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);
 }
示例#4
0
 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);
 }