Ejemplo n.º 1
0
 public GenericRepository(DreamTeamContext _context)
 {
     this._context = _context;
     table         = _context.Set <T>();
 }
Ejemplo n.º 2
0
 public GenericRepository()
 {
     this._context = new DreamTeamContext();
     table         = _context.Set <T>();
 }