コード例 #1
0
 public OdissUserManager(IOdissUserStore store, IAppBuilder app, IOdissUserRepository userRepository, IEmailService emailService, IUserPasswordResetStore userPasswordResetStore, UserSessionManager <Guid, Guid> userSessionManager, ILogger logger) : base(store)
 {
     this.store                  = store;
     this.userRepository         = userRepository;
     this.emailService           = emailService;
     this.userPasswordResetStore = userPasswordResetStore;
     this.userSessionManager     = userSessionManager;
     this.logger                 = logger;
 }
コード例 #2
0
 public OdissSignInManager(UserManager <OdissUser, Guid> userManager, IAuthenticationManager authenticationManager, IAuthenticationAdapter authenticationAdapter, UserSessionManager <Guid, Guid> userSessionManager, ILogger logger) : base(userManager, authenticationManager)
 {
     this.authenticationAdapter = authenticationAdapter;
     this.userSessionManager    = userSessionManager;
     this.logger = logger;
 }