private void View(UnidaysDiscountChallenge unidaysDiscountChallenge, Item item)
        {
            //Create a new window
            ItemWindow itemWindow = new ItemWindow(unidaysDiscountChallenge, item);

            //Check if diaglog is true, otherwise user hasnt click add
            if (itemWindow.ShowDialog() == true)
            {
                //Add the returned item to basket
                unidaysDiscountChallenge.AddToBasket(itemWindow.returnItem);

                //Update bsket size
                tbBasketSize.Text = unidaysDiscountChallenge.GetBasketSize().ToString();
            }
        }