/**
  * Checks wether a country is a supported sales country.
  *
  * @param string $country ISO-3166-alpha-2 code
  *
  * @return true if the country is supported by the store, false otherwise
  */
 private function _isSalesCountry($country)
 {
     return $this->_config->has("sales_countries/{$country}");
 }