public LogFailedLoginAttemptCommandHandler(
     IEntityFrameworkSqlExecutor sqlExecutor,
     IClientConnectionService clientConnectionService
     )
 {
     _sqlExecutor             = sqlExecutor;
     _clientConnectionService = clientConnectionService;
 }
Esempio n. 2
0
 public CustomEntityStoredProcedures(
     IEntityFrameworkSqlExecutor entityFrameworkSqlExecutor,
     CofoundryDbContext dbContext
     )
 {
     _entityFrameworkSqlExecutor = entityFrameworkSqlExecutor;
     _dbContext = dbContext;
 }
Esempio n. 3
0
 public PageDirectoryStoredProcedures(
     IEntityFrameworkSqlExecutor entityFrameworkSqlExecutor,
     CofoundryDbContext dbContext
     )
 {
     _entityFrameworkSqlExecutor = entityFrameworkSqlExecutor;
     _dbContext = dbContext;
 }
 public SetCatLikedCommandHandler(
     IEntityFrameworkSqlExecutor entityFrameworkSqlExecutor,
     SPASiteDbContext spaSiteDbContext
     )
 {
     _entityFrameworkSqlExecutor = entityFrameworkSqlExecutor;
     _spaSiteDbContext           = spaSiteDbContext;
 }
Esempio n. 5
0
 public AuthorizedTaskStoredProcedures(
     IEntityFrameworkSqlExecutor entityFrameworkSqlExecutor,
     CofoundryDbContext dbContext
     )
 {
     _entityFrameworkSqlExecutor = entityFrameworkSqlExecutor;
     _dbContext = dbContext;
 }
 public LogAuthenticatedUserInCommandHandler(
     CofoundryDbContext dbContext,
     IEntityFrameworkSqlExecutor sqlExecutor,
     IClientConnectionService clientConnectionService
     )
 {
     _dbContext               = dbContext;
     _sqlExecutor             = sqlExecutor;
     _clientConnectionService = clientConnectionService;
 }
 public LogFailedLoginAttemptCommandHandler(
     CofoundryDbContext dbContext,
     IEntityFrameworkSqlExecutor sqlExecutor,
     IClientConnectionService clientConnectionService
     )
 {
     _dbContext               = dbContext;
     _sqlExecutor             = sqlExecutor;
     _clientConnectionService = clientConnectionService;
 }
Esempio n. 8
0
 public HasExceededMaxLoginAttemptsQueryHandler(
     CofoundryDbContext dbContext,
     IEntityFrameworkSqlExecutor sqlExecutor,
     AuthenticationSettings authenticationSettings,
     IClientConnectionService clientConnectionService
     )
 {
     _dbContext               = dbContext;
     _sqlExecutor             = sqlExecutor;
     _authenticationSettings  = authenticationSettings;
     _clientConnectionService = clientConnectionService;
 }
Esempio n. 9
0
 public DeleteUnstructuredDataDependenciesCommandHandler(
     CofoundryDbContext dbContext,
     IQueryExecutor queryExecutor,
     IEntityDefinitionRepository entityDefinitionRepository,
     IPermissionRepository permissionRepository,
     IEntityFrameworkSqlExecutor entityFrameworkSqlExecutor
     )
 {
     _dbContext     = dbContext;
     _queryExecutor = queryExecutor;
     _entityDefinitionRepository = entityDefinitionRepository;
     _permissionRepository       = permissionRepository;
     _entityFrameworkSqlExecutor = entityFrameworkSqlExecutor;
 }
Esempio n. 10
0
 public ReOrderCustomEntitiesCommandHandler(
     CofoundryDbContext dbContext,
     IEntityFrameworkSqlExecutor sqlExecutor,
     ICustomEntityCache customEntityCache,
     IMessageAggregator messageAggregator,
     ICustomEntityDefinitionRepository customEntityDefinitionRepository
     )
 {
     _dbContext         = dbContext;
     _sqlExecutor       = sqlExecutor;
     _customEntityCache = customEntityCache;
     _messageAggregator = messageAggregator;
     _customEntityDefinitionRepository = customEntityDefinitionRepository;
 }
 public AddPageDraftVersionCommandHandler(
     CofoundryDbContext dbContext,
     EntityAuditHelper entityAuditHelper,
     IPageCache pageCache,
     IMessageAggregator messageAggregator,
     IEntityFrameworkSqlExecutor entityFrameworkSqlExecutor
     )
 {
     _dbContext                  = dbContext;
     _entityAuditHelper          = entityAuditHelper;
     _pageCache                  = pageCache;
     _messageAggregator          = messageAggregator;
     _entityFrameworkSqlExecutor = entityFrameworkSqlExecutor;
 }
 public AddCustomEntityDraftVersionCommandHandler(
     CofoundryDbContext dbContext,
     EntityAuditHelper entityAuditHelper,
     ICustomEntityCache customEntityCache,
     IMessageAggregator messageAggregator,
     IPermissionValidationService permissionValidationService,
     IEntityFrameworkSqlExecutor entityFrameworkSqlExecutor
     )
 {
     _dbContext                   = dbContext;
     _entityAuditHelper           = entityAuditHelper;
     _customEntityCache           = customEntityCache;
     _messageAggregator           = messageAggregator;
     _permissionValidationService = permissionValidationService;
     _entityFrameworkSqlExecutor  = entityFrameworkSqlExecutor;
 }
 public SetPlayerLikedCommandHandler(IEntityFrameworkSqlExecutor entityFrameworkSqlExecutor, AccedeTeamsDbContext spaSiteDbContext)
 {
     _entityFrameworkSqlExecutor = entityFrameworkSqlExecutor;
     _teamsSiteDbContext         = spaSiteDbContext;
 }