public void CookTurkey(ITurkey turkey) { Console.WriteLine("Im cooking this turkey: " + turkey.Flavor()); }
public string Flavor() { return(turkey.Flavor() + "\n(but I'll be marinated and cant taste like a duck)"); }