Ejemplo n.º 1
0
 public calculatePayment(shoppingCart shoppingCart)
 {
     this.myShoppingCart = shoppingCart;
     this.calTotal       = new calculateTotal(myShoppingCart);
     this.calTaxes       = new calculateTaxes(myShoppingCart);
     this.calDiscount    = new calculateDiscount(myShoppingCart);
     this.exRate         = new exchangeRate();
 }
Ejemplo n.º 2
0
 public calculateDiscount(shoppingCart shoppingCart)
 {
     this.myShoppingCart = shoppingCart;
     this.calTotal       = new calculateTotal(myShoppingCart);
 }