Пример #1
0
 public PasswordAuthenticationController(
     OpenAAPContext context,
     PasswordHashingService hasher,
     IOptions <HashingOptions> hashingOptions
     )
 {
     ctx                 = context;
     this.hasher         = hasher;
     this.hashingOptions = hashingOptions;
 }
Пример #2
0
 public IdentityController(
     OpenAAPContext context
     )
 {
     ctx = context;
 }
Пример #3
0
 public HealthCheckController(OpenAAPContext context)
 {
     ctx = context;
 }