public GevechtController(AccountRepo acrepo, GevechtRepo grepo, AanvalRepo anrepo)
 {
     this.accountRepo = acrepo;
     this.gevechtRepo = grepo;
     this.aanvalRepo  = anrepo;
 }
 public PokemonController(PokemonRepo pRepo, SoortRepo sRepo, AanvalRepo aRepo)
 {
     this.pokemonRepo = pRepo;
     this.soortRepo   = sRepo;
     this.aanvalRepo  = aRepo;
 }