Beispiel #1
0
 // GET: Pokemon
 public ActionResult Index()
 {
     return(View(service.GetAllPokemons().Select(p => new Pokemon(p)).ToList()));
 }