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) { }
public Venta(string id, DateTime fecha, Dependiente dependiente) { this.id = id; this.fecha = fecha; this.dependiente = dependiente; }