public PersistedGrantCommandHandler( IAdimUnitOfWork uow, IMediatorHandler bus, INotificationHandler <DomainNotification> notifications, IPersistedGrantRepository persistedGrantRepository) : base(uow, bus, notifications) { _persistedGrantRepository = persistedGrantRepository; }
public IdentityResourceCommandHandler( IAdimUnitOfWork uow, IMediatorHandler bus, INotificationHandler <DomainNotification> notifications, IIdentityResourceRepository identityResourceRepository) : base(uow, bus, notifications) { _identityResourceRepository = identityResourceRepository; }
public ApiResourceCommandHandler( IAdimUnitOfWork uow, IMediatorHandler bus, INotificationHandler <DomainNotification> notifications, IApiResourceRepository apiResourceService, IApiSecretRepository apiSecretRepository, IApiScopeRepository apiScopeRepository) : base(uow, bus, notifications) { _apiResourceRepository = apiResourceService; _apiSecretRepository = apiSecretRepository; _apiScopeRepository = apiScopeRepository; }
public ClientCommandHandler( IAdimUnitOfWork uow, IMediatorHandler bus, INotificationHandler <DomainNotification> notifications, IClientRepository clientRepository, IClientSecretRepository clientSecretRepository, IClientPropertyRepository clientPropertyRepository, IClientClaimRepository clientClaimRepository) : base(uow, bus, notifications) { _clientRepository = clientRepository; _clientSecretRepository = clientSecretRepository; _clientPropertyRepository = clientPropertyRepository; _clientClaimRepository = clientClaimRepository; }