export function ukCity(code: string, county: Department, place: Place): City {
  return new City(code, county, [place])
}