Exemplo n.º 1
0
 public GroceryItemScanner(IEnumerable <IGroceryItem> items,
                           IGroceryItemOrderFactory orderFactory)
 {
     this.OrderFactory = orderFactory;
     Items             = new List <IGroceryItem>(items);
 }
Exemplo n.º 2
0
 public GroceryItemScanner(IGroceryItemOrderFactory orderFactory)
 {
     this.OrderFactory = orderFactory;
     Items             = new List <IGroceryItem>();
 }