Exemple #1
0
 public Venta(string id, DateTime fecha, Dependiente dependiente)
 {
     this.id            = id;
     this.fecha         = fecha;
     this.dependiente   = dependiente;
     this.lineasDeVenta = new List <LineaDeVenta>();
 }
 public VentaConTarjeta(string id, DateTime fecha, Dependiente dependiente, string tarjeta) : base(id, fecha, dependiente)
 {
     this.id          = id;
     this.fecha       = fecha;
     this.dependiente = dependiente;
     this.tarjeta     = tarjeta;
 }
 public VentaSinTarjeta(string id, DateTime fecha, Dependiente dependiente) : base(id, fecha, dependiente)
 {
 }
Exemple #4
0
 public Venta(string id, DateTime fecha, Dependiente dependiente)
 {
     this.id          = id;
     this.fecha       = fecha;
     this.dependiente = dependiente;
 }