コード例 #1
0
 public GenericRepository(JugadorContext context)
 {
     this._context = context;
     table         = _context.Set <T>();
 }
コード例 #2
0
 public GenericRepository()
 {
     this._context = new JugadorContext();
     table         = _context.Set <T>();
 }