Ejemplo n.º 1
0
 public DataManipulator(MessageStorage ms)
 {
     logger            = ms._logger;
     fileStorage       = ms._filestorage;
     cacheStorage      = ms._cache;
     saveOrReadStorage = ms._saveOrReadStorage;
 }
Ejemplo n.º 2
0
        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;
 }
Ejemplo n.º 4
0
 public OperationService(ILoggerStore loggerStore, string dataStoreConnectionString, string scope)
 {
     this.loggerStore = loggerStore;
     this.dataStoreConnectionString = dataStoreConnectionString;
     this.scope = scope;
 }
Ejemplo n.º 5
0
 public InitialLoading(ILoggerStore loggerStore)
 {
     this.loggerStore = loggerStore;
 }
Ejemplo n.º 6
0
 public OperationLogger(ILoggerStore loggerStore, long operationId)
 {
     this.loggerStore = loggerStore;
     this.operationId = operationId;
     logger           = LogManager.GetLogger(typeof(T).FullName);
 }
Ejemplo n.º 7
0
 public MessageStorage(IStore storeImpl, ICacheStore cacheStore, ILoggerStore loggerStore)
 {
     store  = storeImpl;
     cache  = cacheStore;
     logger = loggerStore;
 }
Ejemplo n.º 8
0
 public DashboardService(IDashboardStore dashboardStore, ILoggerStore loggerStore, IHealthChecksService healthChecksService)
 {
     this.dashboardStore      = dashboardStore;
     this.loggerStore         = loggerStore;
     this.healthChecksService = healthChecksService;
 }