예제 #1
0
파일: Storage.cs 프로젝트: michajas/MutDood
        public Oid Save(Did dbId, IStorable toStore)
        {
            var serialized = _serializer.Serialize(toStore);

            return new Oid(new byte[] {0x01}, new byte[] {0x02});
        }
예제 #2
0
파일: Storage.cs 프로젝트: michajas/MutDood
 public IStorable Get(Did dbId, Oid oid)
 {
     throw new NotImplementedException();
 }
예제 #3
0
파일: Storage.cs 프로젝트: michajas/MutDood
 public IDatabaseSchema GetSchemaForDatabase(Did databaseId)
 {
     throw new NotImplementedException();
 }
예제 #4
0
파일: Storage.cs 프로젝트: michajas/MutDood
 public IStorable[] Find(Did dbId, ISearchCriteria searchCriteria)
 {
     throw new NotImplementedException();
 }