public MongoIndexStore(string mongoUrl, MongoIndexMapper indexMapper) { _database = MongoDatabaseFactory.GetMongoDatabase(mongoUrl); _indexMapper = indexMapper; Collection = _database.GetCollection(Config.MONGOINDEXCOLLECTION); }
public MongoIndexMapperTest() { sut = new MongoIndexMapper(); }