public EntityStorage(IMongoStorage mongoStorage, IIndexes <TEntity> indexes) { Collection = mongoStorage.GetCollection <TEntity>(); indexes.CreateIndexes(Collection); }
public MongoRepository(IMongoStorage mongoStorage, IIndexes <TEntity> indexes) { this.Collection = mongoStorage.GetCollection <TEntity>(); indexes.CreateIndexes(this.Collection); }