示例#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>();
 }