Пример #1
0
        private static TabSection BuildWebServerDetails(EnvironmentWebServerModel model)
        {
            var section = new TabSection("Type", "Integrated Pipeline");

            section.AddRow().Column(model.ServerType).Column(model.IntegratedPipeline);
            return(section);
        }
Пример #2
0
        private static TabObject BuildWebServerDetails(EnvironmentWebServerModel model)
        {
            var section = new TabObject();

            section.AddRow().Key("Type").Value(model.ServerType);
            section.AddRow().Key("Integrated Pipeline").Value(model.IntegratedPipeline);
            return(section);
        }