public TestBaseRepository(IOnwDbContext context, string collectionName) : base(context, collectionName)
 {
 }
Example #2
0
 public GameRepository(IOnwDbContext context) : base(context, GAME_COLLECTION_NAME)
 {
 }
Example #3
0
 public BaseRepository(IOnwDbContext context, string collectionName)
 {
     _context        = context;
     _collectionName = collectionName;
 }