예제 #1
0
 public DbIdFactoryProxy(MemStore memStore, IDbIdFactory factory)
 {
     this.memStore = memStore;
     this.factory  = factory;
 }
예제 #2
0
 public StorableDocument(List <string> categories, IDbIdFactory dbIdFactory)
 {
     this.categories  = categories;
     this.dbIdFactory = dbIdFactory;
 }
예제 #3
0
 public IStorable NewStorable(List <string> categories, IDbIdFactory factory)
 {
     return(new StorableDocument(categories, new DbIdFactoryProxy(this, factory)));
 }