public ClubeController(DevBoosContext context)
 {
     _context = context;
 }
예제 #2
0
 public PosicaoController(DevBoosContext context)
 {
     _context = context;
 }
 public UnitOfWork(DevBoosContext context)
 {
     _context  = context;
     Jogadores = new JogadorRepository(_context);
 }
예제 #4
0
 public JogadorRepository(DevBoosContext context) : base(context)
 {
     this._context = context;
 }