using PokemonSleep.Web.Models; namespace PokemonSleep.Web.Service.IService { public interface IPokemonService { Task GetAllPokemonAsync(); Task GetPokemonByIdAsync(int id); Task CreatePokemonAsync(PokemonDto pokemonDto); Task DeletePokemonAsync(int id); } }