Exemplo n.º 1
0
 public UserManager(ISecurityDataContext context, IPasswordPolicy passwordPolicy)
 {
     this.context        = context;
     this.passwordPolicy = passwordPolicy;
 }
Exemplo n.º 2
0
 public AudiencesStore(ISecurityDataContext context)
 {
     this.context = context;
 }
Exemplo n.º 3
0
 public SecurityDatabaseSeeder(ISecurityDataContext context) => this.context = context;
Exemplo n.º 4
0
 public AuthService(ILogger <AuthService> logger, ISecurityDataContext dbContext)
 {
     this.logger    = logger;
     this.dbContext = dbContext;
 }
Exemplo n.º 5
0
 public DeleteUserApplicationCommandHandler(ISecurityDataContext context) => this.context = context;
Exemplo n.º 6
0
 public UpdateRolePermissionApplicationCommandHandler(ISecurityDataContext context) => this.Context = context;
Exemplo n.º 7
0
 public SearchApplicationResourcesApplicationCommandHandler(ISecurityDataContext context, IConfigurationProvider configurationProvider)
 {
     this.context = context;
     this.configurationProvider = configurationProvider;
 }
Exemplo n.º 8
0
 public RemoveResourceActionApplicationCommandHandler(ISecurityDataContext context) => this.context = context;
Exemplo n.º 9
0
 public ActionAuthorisationFilter(string resourceName, string actionName, ISecurityDataContext dataContext)
 {
     this.resourceName = resourceName;
     this.actionName   = actionName;
     this.dataContext  = dataContext;
 }
Exemplo n.º 10
0
 public CreateApplicationResourceApplicationCommandHandler(ISecurityDataContext context) => this.context = context;
Exemplo n.º 11
0
 public SearchRolesApplicationCommandHandler(ISecurityDataContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemplo n.º 12
0
 public RefreshTokenStore(ISecurityDataContext context)
 {
     this.context = context;
 }
Exemplo n.º 13
0
 public CreateUserApplicationCommandHandler(ISecurityDataContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }