public AddItemToShoppingListService(IShoppingListSectionFactory shoppingListSectionFactory,
                                     IStoreRepository storeRepository, IItemRepository itemRepository,
                                     IShoppingListItemFactory shoppingListItemFactory)
 {
     this.shoppingListSectionFactory = shoppingListSectionFactory;
     this.storeRepository            = storeRepository;
     this.itemRepository             = itemRepository;
     this.shoppingListItemFactory    = shoppingListItemFactory;
 }
 public ShoppingListItemConverter(IShoppingListItemFactory shoppingListItemFactory)
 {
     this.shoppingListItemFactory = shoppingListItemFactory;
 }