コード例 #1
0
ファイル: MongoFhirStore.cs プロジェクト: Ravenheart/spark
 public MongoFhirStore(MongoDatabase database)
 {
     this.database = database;
     this.collection = database.GetCollection(Collection.RESOURCE);
     this.transaction = new MongoTransaction(collection);
 }
コード例 #2
0
ファイル: MongoFhirStore.cs プロジェクト: schellack/spark
 public MongoFhirStore(MongoDatabase database)
 {
     this.database    = database;
     this.collection  = database.GetCollection(Collection.RESOURCE);
     this.transaction = new MongoTransaction(collection);
 }