Beispiel #1
0
 public CumulativeRepository(IMongoCumulativeDBContext context) : base(context)
 {
 }
Beispiel #2
0
 protected BaseRepository(IMongoCumulativeDBContext context)
 {
     _mongoContext = context;
     _dbCollection = _mongoContext.GetCollection <TEntity>(typeof(TEntity).Name.ToLower());
 }