Example #1
0
 public PostgreSqlEventPersistence(
     ILog log,
     IPostgreSqlConnection connection)
 {
     _log        = log;
     _connection = connection;
 }
Example #2
0
 public PostgreSqlSnapshotPersistence(
     ILog log,
     IPostgreSqlConnection postgreSqlConnection)
 {
     _log = log;
     _postgreSqlConnection = postgreSqlConnection;
 }
 public PostgreSqlReadModelStore(
     ILog log,
     IPostgreSqlConnection connection,
     IReadModelSqlGenerator readModelSqlGenerator,
     IReadModelFactory <TReadModel> readModelFactory,
     ITransientFaultHandler <IOptimisticConcurrencyRetryStrategy> transientFaultHandler)
     : base(log, connection, readModelSqlGenerator, readModelFactory, transientFaultHandler)
 {
 }
Example #4
0
 public PostgreSqlThingyGetMessagesQueryHandler(
     IPostgreSqlConnection postgreSqlConnection)
 {
     _postgreSqlConnection = postgreSqlConnection;
 }
 public PostgreSqlThingyGetVersionQueryHandler(
     IPostgreSqlConnection postgreSqlConnection)
 {
     _postgreSqlConnection = postgreSqlConnection;
 }