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 GetAllPokemon() { return new List() { 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" }, }; } } }