public ShoppingListBuilder WithStore(Action <Pdbc.Shopping.Domain.Model.StoreBuilder> storeBuilder) { var b = new Pdbc.Shopping.Domain.Model.StoreBuilder(); storeBuilder.Invoke(b); this.Store = b.Build(); return(this); }
public ShoppingListBuilder WithStore(Pdbc.Shopping.Domain.Model.Store store) { this.Store = store; return(this); }