Example #1
0
 public PersistedGrantService(IPersistedGrantRepository persistedGrantRepository,
                              IPersistedGrantServiceResources persistedGrantServiceResources,
                              IAuditEventLogger auditEventLogger)
 {
     PersistedGrantRepository       = persistedGrantRepository;
     PersistedGrantServiceResources = persistedGrantServiceResources;
     AuditEventLogger = auditEventLogger;
 }
Example #2
0
 public PersistedGrantService(IPersistedGrantRepository persistedGrantRepository,
                              IPersistedGrantServiceResources persistedGrantServiceResources)
 {
     _persistedGrantRepository       = persistedGrantRepository;
     _persistedGrantServiceResources = persistedGrantServiceResources;
 }