public static Brand <MvcBootstrapHelper <TModel> > Brand <TModel>(this IBrandCreator <MvcBootstrapHelper <TModel> > creator, string text, string actionName, string controllerName, object routeValues = null)
 {
     return(creator.Brand(text, null).SetAction(actionName, controllerName, routeValues).SetText(text));
 }
        // Brand

        public static Brand <THelper> Brand <THelper>(this IBrandCreator <THelper> creator, string text, string href = "#")
            where THelper : BootstrapHelper <THelper>
        {
            return(new Brand <THelper>(creator).SetHref(href).SetText(text));
        }