コード例 #1
0
 public LdapAuthenticationService(IOptions <LdapConfig> ldapConfig, IOptions <JwtConfig> jwtConfig, DbLabCalcContext context)
 {
     _ldapConfig = ldapConfig.Value;
     _jwtConfig  = jwtConfig.Value;
     _context    = context;
 }
コード例 #2
0
 public DbAuthenticationService(IOptions <JwtConfig> jwtConfig, DbLabCalcContext context)
 {
     _jwtConfig = jwtConfig.Value;
     _context   = context;
 }