private void AddTemplates()
        {
            string[] templates = new string[]
            {
                "Dashboard",
                "Exception",
                "Index",
                "Tag",
                "Partials.Attributes",
                "Partials.AttributesView",
                "Partials.Head",
                "Partials.Log",
                "Partials.Navbar",
                "Partials.RecurseNodes",
                "Partials.Scripts",
                "Partials.Sidenav",
                "Partials.SparkBDD",
                "Partials.SparkStandard",
                "Partials.SparkStepDetails",
                "SparkIndexSPA",
                "Partials.SparkTestSPA",
                "Partials.SparkTagSPA",
                "Partials.SparkExceptionSPA",
                "Partials.SparkDashboardSPA"
            };

            TemplateLoadService.LoadTemplate <IHtmlMarker>(templates);
        }
        private static void AddTemplates()
        {
            string[] templates = new string[]
            {
                "Views.Logger.LoggerTest",
                "Views.Logger.LoggerMacro"
            };
            TemplateLoadService.LoadTemplate <ILoggerMarker>(templates);

            templates = new string[]
            {
                "Views.Commons.CommonsAttributes",
                "Views.Commons.CommonsDashboard",
                "Views.Commons.CommonsException",
                "Views.Commons.CommonsHead",
                "Views.Commons.CommonsInjectCss",
                "Views.Commons.CommonsInjectJs",
                "Views.Commons.CommonsMedia",
                "Views.Commons.CommonsNav",
                "Views.Commons.CommonsNavRight",
                "Views.Commons.CommonsRow",
                "Views.Commons.CommonsTag"
            };
            TemplateLoadService.LoadTemplate <ICommonsMarker>(templates);
        }
        private void AddTemplates()
        {
            string[] templates = new string[]
            {
                "Views.V3Html.V3Index",
                "Views.V3Html.V3Head",
                "Views.V3Html.V3Nav",
                "Views.V3Html.Test.V3Test",
                "Views.V3Html.Test.V3Charts",
                "Views.V3Html.Author.V3Author",
                "Views.V3Html.Category.V3Category",
                "Views.V3Html.Dashboard.V3Dashboard",
                "Views.V3Html.Exception.V3Exception",
                "Views.V3Html.TestRunner.V3Logs"
            };

            TemplateLoadService.LoadTemplate <IV3HtmlMarker>(templates);
        }
        private void AddTemplates()
        {
            string[] templates = new string[]
            {
                "Views.Html.Dashboard",
                "Views.Html.Exception",
                "Views.Html.Index",
                "Views.Html.Tag",
                "Views.Html.Partials.Attributes",
                "Views.Html.Partials.AttributesView",
                "Views.Html.Partials.Head",
                "Views.Html.Partials.Log",
                "Views.Html.Partials.Navbar",
                "Views.Html.Partials.RecurseNodes",
                "Views.Html.Partials.Scripts",
                "Views.Html.Partials.Sidenav",
                "Views.Html.Partials.SparkBDD",
                "Views.Html.Partials.SparkStandard",
                "Views.Html.Partials.SparkStepDetails",
            };

            TemplateLoadService.LoadTemplate <IHtmlMarker>(templates);
        }