public override void Prepare() { Console.WriteLine("Preparing Star Kebab Hot kebab at Star Kebab"); componentsFactory.createDough(); componentsFactory.createSauce(); componentsFactory.createMeat(); }
public override void Prepare() { Console.WriteLine("Preparing Fast Kebab Small kebab at Fast Kebab"); componentsFactory.createDough(); componentsFactory.createSauce(); componentsFactory.createMeat(); }
public override void Prepare() { Console.WriteLine("Making custom kebab"); componentsFactory.createDough(); componentsFactory.createSauce(); componentsFactory.createMeat(); }