private readonly StartEFCoreDbContext _context; //Context'i içeriye aldık

        //const. olusturduk
        public TeamController(StartEFCoreDbContext context)
        {
            _context = context;
        }
Ejemplo n.º 2
0
 public TeamPlayersListViewComponent(StartEFCoreDbContext context)
 {
     _context = context;
 }
 public PlayerController(StartEFCoreDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public TeamInfoViewComponent(StartEFCoreDbContext context)
 {
     _context = context;
 }