static void Main(string[] args)
        {
            HamAndCheese hamAndCheese = new HamAndCheese();

            SandwichMaker sandwichMaker = new SandwichMaker(hamAndCheese);

            sandwichMaker.buildSandwich();


            Sandwich sandwich = hamAndCheese.Sandwich;

            sandwich.Show();
        }
 public TurkeyClub()
 {
     sandwich = new Sandwich("Turkey Club");
 }
Esempio n. 3
0
 public BLT()
 {
     sandwich = new Sandwich("BLT");
 }
Esempio n. 4
0
 public HamAndCheese()
 {
     sandwich = new Sandwich("Ham and Cheese");
 }