예제 #1
0
 public AccountController(
     IIdentityServerInteractionService interaction,
     IClientStore clientStore,
     IAuthenticationSchemeProvider schemeProvider,
     IEventService events,
     DapperAdminUsers dapper)
 {
     // if the TestUserStore is not in DI, then we'll just use the global users collection
     // this is where you would plug in your own custom identity management library (e.g. ASP.NET Identity)
     _dapper         = dapper;
     _interaction    = interaction;
     _clientStore    = clientStore;
     _schemeProvider = schemeProvider;
     _events         = events;
 }
예제 #2
0
 public ResourceOwnerPasswordValidator(DapperAdminUsers adminUsers)
 {
     this._adminUsers = adminUsers;
 }