public UserProfileController(IKuerzerUow uow, ILinkCreator linkCreator)
 {
     Uow = uow;
     _linkCreator = linkCreator;
 }
Esempio n. 2
0
 public UserProfileController(IKuerzerUow uow, ILinkCreator linkCreator)
 {
     Uow          = uow;
     _linkCreator = linkCreator;
 }
Esempio n. 3
0
 public LinksController(IKuerzerUow uow, ILinkCreator linkCreator)
 {
     Uow =uow;
     _linkCreator = linkCreator;
 }
 public static Link <MvcBootstrapHelper <TModel> > Link <TModel>(this ILinkCreator <MvcBootstrapHelper <TModel> > creator, string text, string actionName, string controllerName, object routeValues = null)
 {
     return(creator.Link(text, null).SetAction(actionName, controllerName, routeValues).SetText(text));
 }
Esempio n. 5
0
 public LinksController(IKuerzerUow uow, ILinkCreator linkCreator)
 {
     Uow          = uow;
     _linkCreator = linkCreator;
 }
        // Link

        public static Link <THelper> Link <THelper>(this ILinkCreator <THelper> creator, string text, string href = "#")
            where THelper : BootstrapHelper <THelper>
        {
            return(new Link <THelper>(creator).SetHref(href).SetText(text));
        }
Esempio n. 7
0
 public UserApplicationController(IKuerzerUow uow, ILinkCreator linkCreator)
 {
     Uow          = uow;
     _linkCreator = linkCreator;
 }
 public UserApplicationController(IKuerzerUow uow, ILinkCreator linkCreator)
 {
     Uow =uow;
     _linkCreator = linkCreator;
 }