Ejemplo n.º 1
0
 public CashRegister()
 {
     this.taxCalc   = new TaxCalculator();
     this.billEntry = new BillEntryGenerator(this.taxCalc);
 }
Ejemplo n.º 2
0
 public BillEntryGenerator(TaxCalculator taxCalc)
 {
     this.taxCalc = taxCalc;
 }