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");
 }
Exemple #3
0
 public BLT()
 {
     sandwich = new Sandwich("BLT");
 }
Exemple #4
0
 public HamAndCheese()
 {
     sandwich = new Sandwich("Ham and Cheese");
 }