Example #1
0
 public PlayersController(MyNbaWebAppContext context, IDataRepository <Player> repo)
 {
     _context = context;
     _repo    = repo;
 }
 public TeamsController(MyNbaWebAppContext context, IDataRepository <Team> repo)
 {
     _context = context;
     _repo    = repo;
 }