Beispiel #1
0
 public SynchronisableCommitSynchroniser(IEventSessionFactory eventSessionFactory)
 {
     this.eventSessionFactory = eventSessionFactory;
 }
Beispiel #2
0
 public DomainRepository(IEventSessionFactory eventSessionFactory, ILocalMachine localMachine)
 {
     this.eventSessionFactory = eventSessionFactory;
     this.localMachine        = localMachine;
 }
Beispiel #3
0
 public SynchronisableCommitBuilder(IEventSessionFactory factory)
 {
     this.factory = factory;
 }
 public EventRetreiver(IEventSessionFactory factory)
 {
     this.factory = factory;
 }
 protected StoreAndCommitEventCommandHandler(IEventSessionFactory eventSessionFactory, ILocalMachine localMachine)
 {
     this.eventSessionFactory = eventSessionFactory;
     this.localMachine        = localMachine;
 }
 public StoreAndCommitTestCommandHandler(IEventSessionFactory eventSessionFactory, ILocalMachine localMachine)
     : base(eventSessionFactory, localMachine)
 {
 }