コード例 #1
0
        public IEnumerable <Country> GetAllCountries()
        {
            var listEntityCountry = _countryService.GetAllCountries();
            IEnumerable <Country> modelCountryList = CountryMapper.ConvertCountryEntityToModel(listEntityCountry);

            return(modelCountryList);
        }