public void SetStoreFrontProductPrice()
    {
        string topsUrl  = PurchaseCurrentOutfit.getItemUrl("tops");
        string pantsUrl = PurchaseCurrentOutfit.getItemUrl("pants");
        string shoesUrl = PurchaseCurrentOutfit.getItemUrl("shoes");

        priceOfTop   = PurchaseCurrentOutfit.FindItemPrice(topsUrl);
        priceOfPants = PurchaseCurrentOutfit.FindItemPrice(pantsUrl);
        priceOfShoes = PurchaseCurrentOutfit.FindItemPrice(shoesUrl);
    }