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