private void ShowBuyThisAppPane(int numberOfStarts)
        {
            var buy = new BuyThisAppTask();

            buy.ShowAfterThreshold(numberOfStarts);
        }
        private void ShowBuyThisAppPane()
        {
            var buy = new BuyThisAppTask();

            buy.ShowAfterThreshold();
        }