public AppProvider(ILocalCache localCache, IAppsIndex indexForApps, IRulesIndex indexRules, ISchemasIndex indexSchemas) { this.localCache = localCache; this.indexForApps = indexForApps; this.indexRules = indexRules; this.indexSchemas = indexSchemas; }
public RuleQueryService(IRulesIndex rulesIndex, IRuleEnricher ruleEnricher) { Guard.NotNull(rulesIndex); Guard.NotNull(ruleEnricher); this.rulesIndex = rulesIndex; this.ruleEnricher = ruleEnricher; }
public PopulateGrainIndexes(IAppsIndex indexApps, IRulesIndex indexRules, ISchemasIndex indexSchemas, IEventDataFormatter eventDataFormatter, IEventStore eventStore) { this.indexApps = indexApps; this.indexRules = indexRules; this.indexSchemas = indexSchemas; this.eventDataFormatter = eventDataFormatter; this.eventStore = eventStore; }
public RulesIndexAdminController() { try { iRulesIndex = new RulesIndexRepository(); } catch (Exception ex) { Utility.WriteLog("RulesIndexAdminController (Admin)", null, "Error while initialize repository.", ex.ToString()); } }
public AppProvider(ILocalCache localCache, IAppsIndex indexForApps, IRulesIndex indexRules, ISchemasIndex indexSchemas) { Guard.NotNull(indexForApps, nameof(indexForApps)); Guard.NotNull(indexRules, nameof(indexRules)); Guard.NotNull(indexSchemas, nameof(indexSchemas)); Guard.NotNull(localCache, nameof(localCache)); this.localCache = localCache; this.indexForApps = indexForApps; this.indexRules = indexRules; this.indexSchemas = indexSchemas; }
public RulesOfFEMASubModuleDetailUserController() { try { iFEMASubModuleDetail = new FEMASubModuleDetailRepository(); iRulesIndex = new RulesIndexRepository(); iRulesSubIndex = new RulesSubIndexRepository(); iRulesIndexAmendment = new RulesIndexAmendmentRepository(); } catch (Exception ex) { Utility.WriteLog("RulesOfFEMASubModuleDetailUserController (User)", null, "Error while initialize repository.", ex.ToString()); } }
public RuleQueryService(IRulesIndex rulesIndex, IRuleEnricher ruleEnricher) { this.rulesIndex = rulesIndex; this.ruleEnricher = ruleEnricher; }
public BackupRules(IRulesIndex indexForRules) { Guard.NotNull(indexForRules); this.indexForRules = indexForRules; }
public BackupRules(IRulesIndex indexForRules) { this.indexForRules = indexForRules; }
public DefaultRulesRunner(IRulesIndex rulesIndex) { RuleIndex = rulesIndex; }
public DefaultRulesRunner( IRulesIndex rulesIndex ) { RuleIndex = rulesIndex; }