/// <summary>
            /// Gets the customer address control.
            /// </summary>
            /// <returns>
            /// Customer address control markup.
            /// </returns>
            public static MvcHtmlString GetCustomerAddressControl()
            {
                string htmlContent;

                using (CustomerAddress customerAddress = new CustomerAddress())
                {
                    htmlContent = customerAddress.GetControlMarkup();
                }

                return(MvcHtmlString.Create(htmlContent));
            }