public Authentication
 (
     TempLogSession tempLog,
     UnverifiedUser unverifiedUser,
     IAccess access,
     IHashedPasswordFactory hashedPasswordFactory,
     CachedUserContext userContext
 )
 {
     this.tempLog               = tempLog;
     this.unverifiedUser        = unverifiedUser;
     this.access                = access;
     this.hashedPasswordFactory = hashedPasswordFactory;
     this.userContext           = userContext;
 }
Example #2
0
 public AddSystemUserAction(AppFactory appFactory, Clock clock, IHashedPasswordFactory hashedPasswordFactory)
 {
     this.appFactory            = appFactory;
     this.clock                 = clock;
     this.hashedPasswordFactory = hashedPasswordFactory;
 }
 public VerifyLoginAction(UnverifiedUser unverifiedUser, IHashedPasswordFactory hashedPasswordFactory)
 {
     this.unverifiedUser        = unverifiedUser;
     this.hashedPasswordFactory = hashedPasswordFactory;
 }