public SandwichBuilder Without(CondimentDto condiment) { sandwich.Condiments.Remove(condiment); return(this); }
public SandwichBuilder With(CondimentDto condiment) { sandwich.Condiments.Add(condiment); return(this); }