public ShoppingItemViewPresenter(ShoppingItem item)
        {
            this.item = item;
            this.service = new ShoppingService();

        }
		public ShoppingItemsPresenter(IShoppingListsView view)
        {
            shoppingService = new ShoppingService();
			this.view = view;
        }