public class CofeeMaker { public void PrepareRecipe() { this.BoilWater() this.BrewCoffeeGrinds() this.PourInCup() this.AddSugarAndMilk() } private void BoilWater() { Console.WriteLine("boiling water...") } private void BrewCoffeeGrinds() { Console.WriteLine("brewing coffee grinds...") } private void PourInCup() { Console.WriteLine("pouring in cup...") } private void AddSugarAndMilk() { Console.WriteLine("adding sugar and milk...") } }