Exemplo n.º 1
0
 public RedirectRuleController(IRoutingAppService routingAppService, IOrchardServices orchardServices, ISiteService siteService, IWebConfigService webConfigService)
 {
     _routingAppService = routingAppService;
     _orchardServices   = orchardServices;
     _siteService       = siteService;
 }
Exemplo n.º 2
0
 public RoutingAppService(IRepository <RedirectRule> repository, IWebConfigService webConfigService)
 {
     _repository       = repository;
     _webConfigService = webConfigService;
 }
Exemplo n.º 3
0
 public LoginService(IUserPrincipalFactory userPrincipalFactory, IWebConfigService configService, IWebPrincipalService webPrincipalService)
 {
     this.webPrincipalService  = webPrincipalService;
     this.configService        = configService;
     this.userPrincipalFactory = userPrincipalFactory;
 }