Esempio n. 1
0
 public FakeIdentityServiceBase(FakeUserStore userStore,
                                FakeUserValidators userValidators,
                                FakeClaimsAuthenticationService1 claimsAuthenticationService,
                                FakeClaimsConverter claimsConverter)
     : base(userStore, userValidators, claimsAuthenticationService, claimsConverter)
 {
     this.UserStore      = userStore;
     this.UserValidators = userValidators;
     this.ClaimsAuthenticationService = claimsAuthenticationService;
     this.ClaimsConverter             = claimsConverter;
 }
Esempio n. 2
0
 public FakeClaimsAuthenticationServiceBase(FakeUserStore userStore,
                                            ClaimOptions options, FakeSystemClock clock)
     : base(userStore, options, clock)
 {
 }
 public FakeClaimsAuthenticationService2(FakeHttpContextAccessor httpContextAccessor,
                                         FakeUserStore userStore, ClaimOptions options, FakeSystemClock clock)
     : base(httpContextAccessor, userStore, options, clock)
 {
 }