Exemplo n.º 1
0
        public async Task <CountryInfoDTO> GetCountryInfo(string countryName)
        {
            var country = await _countryLogic.GetCountryInfoFromApi(countryName);

            return(new CountryInfoDTO(country.CountryName, country.CountryCode, country.CountryCapital, country.CountryArea,
                                      country.CountryPopulation, country.Region));
        }