Example #1
0
        // PageNum

        public static PageNum <THelper> PageNum <THelper>(this IPageNumCreator <THelper> creator, string text, string href = "#")
            where THelper : BootstrapHelper <THelper>
        {
            return(new PageNum <THelper>(creator).SetHref(href).SetText(text));
        }
 public static PageNum <MvcBootstrapHelper <TModel> > PageNum <TModel>(this IPageNumCreator <MvcBootstrapHelper <TModel> > creator, string text, string actionName, string controllerName, object routeValues = null)
 {
     return(creator.PageNum(text, null).SetAction(actionName, controllerName, routeValues));
 }