Beispiel #1
0
        public T GetModel <T>(IPublishedContent content) where T : PageBaseModel, new()
        {
            var model = base.GetModel <T>(content);

            model.Navigation = _navigationBuilder.GetModel(content);

            model.SeoBase = _seoBaseBuilder.GetModel(content);

            return(model);
        }