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