public DataManipulator(MessageStorage ms) { logger = ms._logger; fileStorage = ms._filestorage; cacheStorage = ms._cache; saveOrReadStorage = ms._saveOrReadStorage; }
internal Operation(ILoggerStore loggerStore, string dataStoreConnectionString, OperationContext context) { this.loggerStore = loggerStore; OperationContext = context; Connection = new OperationConnection(this, dataStoreConnectionString); operationManagerStore = new OperationManagerStore(Connection); operationId = operationManagerStore.Start(context).Result; }
public OperationWithLogsService(IOperationStore operationStore, ILoggerStore loggerStore, IIncidentStore incidentStore) { this.operationStore = operationStore; this.loggerStore = loggerStore; this.incidentStore = incidentStore; }
public OperationService(ILoggerStore loggerStore, string dataStoreConnectionString, string scope) { this.loggerStore = loggerStore; this.dataStoreConnectionString = dataStoreConnectionString; this.scope = scope; }
public InitialLoading(ILoggerStore loggerStore) { this.loggerStore = loggerStore; }
public OperationLogger(ILoggerStore loggerStore, long operationId) { this.loggerStore = loggerStore; this.operationId = operationId; logger = LogManager.GetLogger(typeof(T).FullName); }
public MessageStorage(IStore storeImpl, ICacheStore cacheStore, ILoggerStore loggerStore) { store = storeImpl; cache = cacheStore; logger = loggerStore; }
public DashboardService(IDashboardStore dashboardStore, ILoggerStore loggerStore, IHealthChecksService healthChecksService) { this.dashboardStore = dashboardStore; this.loggerStore = loggerStore; this.healthChecksService = healthChecksService; }