예제 #1
0
 protected BasePersistenceTest()
 {
     Store = Create();
 }
예제 #2
0
파일: Stream.cs 프로젝트: AGiorgetti/NStore
 public Stream(string streamId, IRawStore raw)
 {
     this.Id = streamId;
     _raw    = raw;
 }
예제 #3
0
 public StreamStore(IRawStore raw)
 {
     _raw = raw;
 }