public ControllerBase(IDomainContextResolver resolver, ILocalizationService localization) { this.Localization = localization; this.Resolver = resolver; }
public AuthController(IAntiforgery antiForgeryService, ILocalAuthenticationService authService, CultureService cultureService, IOptions <Toucan.Server.Config> serverConfig, ISignupService signupService, ITokenProviderService <Token> tokenService, IDomainContextResolver resolver, ILocalizationService localization) : base(resolver, localization) { this.antiForgeryService = antiForgeryService; this.authService = authService; this.cultureService = cultureService; this.serverConfig = serverConfig.Value; this.signupService = signupService; this.tokenService = tokenService; }
public ManageRoleController(IManageRoleService manageRoleService, IDomainContextResolver resolver, ILocalizationService localization) : base(resolver, localization) { this.manageRoleService = manageRoleService; }
public ExternalAuthControllerController(IExternalAuthenticationService externalAuthService, IMemoryCache cache, ITokenProviderService <Token> tokenService, IDomainContextResolver resolver, ILocalizationService localization) : base(resolver, localization) { this.cache = cache; this.externalAuthService = externalAuthService; this.tokenService = tokenService; }
public AuditService(ILogger <AuditService> logger, IDomainContextResolver resolver) { this.logger = logger; this.resolver = resolver; }
public ContentController(IDomainContextResolver resolver, ILocalizationService localization) { this.localization = localization; this.resolver = resolver; }
public ContentController(IDomainContextResolver resolver, ILocalizationService localization) : base(resolver, localization) { }
public ProfileController(CultureService cultureService, IManageProfileService profileService, IDomainContextResolver resolver, ILocalizationService localization) : base(resolver, localization) { this.cultureService = cultureService; this.profileService = profileService; }