48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
using Portfolio.Domain.Features.Articles;
|
|
using Portfolio.Domain.Features.Pokemon;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Portfolio.Application.Services.PokemonService
|
|
{
|
|
public class PokemonService : IPokemonService
|
|
{
|
|
public List<Pokemon> GetAllPokemon()
|
|
{
|
|
return new List<Pokemon>() {
|
|
|
|
new Pokemon
|
|
{
|
|
Id = 1,
|
|
PokemonId = "001",
|
|
PokemonName = "Bulbasaur",
|
|
SleepType = "Dozing",
|
|
Speciality = "Ingredients"
|
|
|
|
},
|
|
new Pokemon
|
|
{
|
|
Id = 2,
|
|
PokemonId = "002",
|
|
PokemonName = "Ivysaur",
|
|
SleepType = "Dozing",
|
|
Speciality = "Ingredients"
|
|
|
|
},
|
|
new Pokemon
|
|
{
|
|
Id = 3,
|
|
PokemonId = "003",
|
|
PokemonName = "Venasaur",
|
|
SleepType = "Dozing",
|
|
Speciality = "Ingredients"
|
|
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|