Exemplo n.º 1
0
 public CustomCookieAuthenticationEvents(IUserRepository userRepository,
                                         ILogger <CustomCookieAuthenticationEvents> logger,
                                         InstallTokenService installTokenService)
 {
     // Get the database from registered DI services.
     _userRepository      = userRepository;
     _logger              = logger;
     _installTokenService = installTokenService;
 }
Exemplo n.º 2
0
 public InstallTokenHostService(IServiceProvider serviceProvider, InstallTokenService installTokenService)
 {
     _serviceProvider     = serviceProvider;
     _installTokenService = installTokenService;
 }
 public SystemInitializedCheckAsyncActionFilter(InstallTokenService installTokenService)
 {
     _installTokenService = installTokenService;
 }
Exemplo n.º 4
0
 public InstallController(InstallTokenService installTokenService)
 {
     _installTokenService = installTokenService;
 }
Exemplo n.º 5
0
 public InstallCheckMiddleware(RequestDelegate next, InstallTokenService installTokenService)
 {
     _installTokenService = installTokenService;
     Next = next;
 }