Пример #1
0
        public PageBuilder Footer(Action <Footer> action)
        {
            var model = new Footer();

            action.Invoke(model);
            var headerBuilder = new FooterBuilder(this.HtmlHelper, model).ToHtmlString();

            return(this);
        }
Пример #2
0
        public PageBuilder Footer()
        {
            var headerBuilder = new FooterBuilder(this.HtmlHelper, new UI.Footer()).ToHtmlString();

            return(this);
        }