Esempio n. 1
0
 public Order(CoffeeMenu priceList, IPrompt prompt)
 {
     this._priceList = priceList;
     this._prompt    = prompt;
     this._newCoffee = new Coffee(priceList, prompt);
 }
Esempio n. 2
0
 public Coffee(CoffeeMenu priceList, IPrompt prompt)
 {
     this._priceList = priceList;
     this._prompt    = prompt;
 }