public ActionResult <string> Get()
 {
     return(_coffeeStrategy.Brew().ToString());
 }
Пример #2
0
 public Beverage Brew()
 {
     //In real-world scenario this method would probably not match up and shared logic
     //could be placed here
     return(_coffeeStrategy.Brew());
 }