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