Exemplo n.º 1
0
 public AppProvider(ILocalCache localCache, IAppsIndex indexForApps, IRulesIndex indexRules, ISchemasIndex indexSchemas)
 {
     this.localCache   = localCache;
     this.indexForApps = indexForApps;
     this.indexRules   = indexRules;
     this.indexSchemas = indexSchemas;
 }
Exemplo n.º 2
0
 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;
 }
Exemplo n.º 3
0
        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;
        }
Exemplo n.º 4
0
        public BackupSchemas(ISchemasIndex indexSchemas)
        {
            Guard.NotNull(indexSchemas);

            this.indexSchemas = indexSchemas;
        }
Exemplo n.º 5
0
 public BackupSchemas(ISchemasIndex indexSchemas)
 {
     this.indexSchemas = indexSchemas;
 }