Example #1
0
 ///<inheritDoc/>
 public IDoneSandwich BuildSandwich()
 {
     _builder.CreateNewSandwich();
     _builder.SandwichName();
     _builder.PrepareBread();
     _builder.ApplyMeatAndCheese();
     _builder.ApplyVegetables();
     _builder.AddCondiments(_hasMayo, _hasMustard);
     return(this);
 }