internal EventStream GetByIdFromPersistenceStore(Guid id, EventStoreSession session)
 {
     return this.persistenceMethod.GetById(id);
 }
 public EventStoreSession NewSession()
 {
     var newStream = new EventStoreSession(this, this.persistenceMethod.NewSession());
     this.CurrentSession = newStream;
     return newStream;
 }