public TeamsController(IWorldCupRepository worldCupRepository)
 {
     _worldCupRepository = worldCupRepository;
 }
 public WorldCupController3(IWorldCupRepository worldCupRepository)
 {
     _worldCupRepository = worldCupRepository;
 }
Example #3
0
 public TeamsController(IWorldCupRepository worldCupRepository)
 {
     _worldCupRepository = worldCupRepository;
     AutoMapperConfig.Initialize();
 }
 public PlayersController(IWorldCupRepository worldCupRepository)
 {
     _worldCupRepository = worldCupRepository;
 }