/**
  * @param     $countryId
  * @param int $default
  */
 public function setTaxPrice($countryId, $default = 0)
 {
     $this->taxRate = TaxCalculator::calculateProductTaxRate($this->product->getTax(), $countryId, $default);
 }