Exemplo n.º 1
0
 public void OneTimeSetUp()
 {
     ClientService = new MongoClientService();
     Collection    = ClientService.GetMongoCollection <ThreadEntry>(connectionString: MongoClientService.DefaultMongodbConnString, databaseName: "test", collectionName: "nunit_test");
 }
 public FoodRepository(MongoClientService mongoClient)
 {
     _mongoClient = mongoClient;
     _collection  = _mongoClient.CreateNewCollection <FoodItem>("FoodItems");
 }