Ejemplo n.º 1
0
 public DbInitialiser(NbaDbContext context)
 {
     this.PlayerDbInitialiser      = new PlayerDbInitialiser(context);
     this.TeamInitialiser          = new TeamDbInitialiser(context);
     this.TeamPlayerInitialiser    = new TeamPlayerDbInitialiser(context);
     this.GamesPlayedDbInitialiser = new GamesPlayedDbInitialiser(context);
 }
Ejemplo n.º 2
0
 public NbaTeamsController(NbaDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public PredictionsController(NbaDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public TeamPlayerDbInitialiser(NbaDbContext context)
 {
     this.Context = context;
 }
Ejemplo n.º 5
0
 public CurrentPlayersController(NbaDbContext context)
 {
     _context = context;
 }
 public HistoricPlayersController(NbaDbContext context)
 {
     _context = context;
 }
 public GamesPlayedDbInitialiser(NbaDbContext context)
 {
     SetRequired();
     this.Context = context;
 }
Ejemplo n.º 8
0
 public TeamPlayersController(NbaDbContext context)
 {
     _context = context;
 }