예제 #1
0
 public BasicAuthenticationHandler(
     IOptionsMonitor <AuthenticationSchemeOptions> options,
     ILoggerFactory logger,
     UrlEncoder encoder,
     ISystemClock clock,
     IAuthenticationService authenticationService)
     : base(options, logger, encoder, clock)
 {
     _authenticationService = authenticationService;
 }
예제 #2
0
 public LoginController(IAuthenticationService authenticationService)
 {
     _authenticationService = authenticationService;
 }