Example #1
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;
        }
Example #2
0
 public OperationManagerStore(IOperationConnection connection)
 {
     this.connection = connection;
 }