public ConsentController(
     IIdentityServerInteractionService interaction,
     IClientStore clientStore,
     IResourceStore resourceStore)
 {
     _consent = new ConsentService(interaction, clientStore, resourceStore);
 }
Пример #2
0
 public ConsentController(ICustomConsentService consent)
 {
     _consent = consent;
 }