private void CreateCustomerAddress()
        {
            var addresses = AddressManager.CreateCustomerAddresses(this.CustomerCount);

            this.ExportAddresses = string.Join("," + Environment.NewLine, addresses);
            this.Clip.SetText(ExportAddresses);
            if (this.Export)
            {
                this.ShowExport = true;
            }
            else
            {
                this.Close();
            }
        }