public async Task <ActionResult <City> > GetCity(int id) { var city = services.Find(id); if (city == null) { return(NotFound()); } return(city); }