public IdentityResourceService(IIdentityResourceRepository identityResourceRepository, IIdentityResourceServiceResources identityResourceServiceResources, IAuditEventLogger auditEventLogger) { IdentityResourceRepository = identityResourceRepository; IdentityResourceServiceResources = identityResourceServiceResources; AuditEventLogger = auditEventLogger; }
public IdentityResourceService(IIdentityResourceRepository identityResourceRepository, IIdentityResourceServiceResources identityResourceServiceResources) { _identityResourceRepository = identityResourceRepository; _identityResourceServiceResources = identityResourceServiceResources; }
private IIdentityResourceService GetIdentityResourceService(IIdentityResourceRepository repository, IIdentityResourceServiceResources identityResourceServiceResources, IAuditEventLogger auditEventLogger) { IIdentityResourceService identityResourceService = new IdentityResourceService(repository, identityResourceServiceResources, auditEventLogger); return(identityResourceService); }
public IdentityResourceService(IIdentityResourceRepository <TDbContext> identityResourceRepository, IIdentityResourceServiceResources identityResourceServiceResources) { _identityResourceRepository = identityResourceRepository; _identityResourceServiceResources = identityResourceServiceResources; }
private IIdentityResourceService GetIdentityResourceService(IIdentityResourceRepository repository, IIdentityResourceServiceResources identityResourceServiceResources) { IIdentityResourceService identityResourceService = new IdentityResourceService(repository, identityResourceServiceResources); return(identityResourceService); }
private IIdentityResourceService <AdminDbContext> GetIdentityResourceService(IIdentityResourceRepository <AdminDbContext> repository, IIdentityResourceServiceResources identityResourceServiceResources) { IIdentityResourceService <AdminDbContext> identityResourceService = new IdentityResourceService <AdminDbContext>(repository, identityResourceServiceResources); return(identityResourceService); }