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