Example #1
0
 // Constructor
 public Factura()
 {
     nroFactura = 0;
     fecha = DateTime.Today;
     cine = null;
     cliente = null;
     formaDePago = 0;
     butaca = 0;
     precio = 0;
     promocion = 0;
     descuento = 0;
 }
Example #2
0
 public Factura( int nroFactura, DateTime fecha, Cine cine, Cliente cliente, int formaDePago,
     int butaca, double precio, int promocion, int descuento)
 {
     this.nroFactura = nroFactura;
     this.fecha = fecha;
     this.cine = cine;
     this.cliente = cliente;
     this.formaDePago = formaDePago;
     this.butaca = butaca;
     this.precio = precio;
     this.promocion = promocion;
     this.descuento = descuento;
 }