Пример #1
0
        public async Task <Guid> DeletePokemonById(Guid id)
        {
            await _pokedexRepository.DeletePokemonById(id);

            _logger.LogInformation(Constants.Deleted + " " + Constants.Pokemon + ": " + id);

            return(id);
        }