예제 #1
0
            /// <summary>
            /// Gets the header for customer address control header.
            /// </summary>
            /// <returns>
            /// Customer address control header markup.
            /// </returns>
            public static MvcHtmlString GetCustomerAddressControlHeader()
            {
                string htmlContent;

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

                return(MvcHtmlString.Create(htmlContent));
            }