Beispiel #1
0
        public async Task <ActionResult <IEnumerable <City> > > GetAllCityByCountryCode(string countryCode)
        {
            var city = await repository.GetAllByCountryCode(countryCode);

            return(StatusCode(StatusCodes.Status200OK, city));
        }