Exemple #1
0
 /// <summary>
 /// Constructor default
 /// </summary>
 protected BaseRepository()
 {
     _dbSet = _context.Set <TEntity>();
 }
Exemple #2
0
 public BaseRepository(LearningContext ctx)
 {
     _ctx       = ctx;
     this.dbSet = _ctx.Set <T>();
 }