Ejemplo n.º 1
0
 public EachesGroceryItemOrderFactory(ICountSelector countSelector)
 {
     this.CountSelector = countSelector;
 }
Ejemplo n.º 2
0
 public EachesGroceryItemOrderFactory(int defaultEachesItemCount)
 {
     this.CountSelector = new StaticCountSelector(defaultEachesItemCount);
 }