예제 #1
0
 public GenericRepository()
 {
     this._context = new JugadorContext();
     table         = _context.Set <T>();
 }
예제 #2
0
 public GenericRepository(JugadorContext context)
 {
     this._context = context;
     table         = _context.Set <T>();
 }
예제 #3
0
 public GenericRepository(JugadorContext contexto)
 {
     _contexto = contexto;
     _tabla    = _contexto.Set <T>();
 }