/**
  * @param int $grossPrice
  * @param float $taxRate
  *
  * @return float
  */
 public function getAccruedTaxAmountFromGrossPrice($grossPrice, $taxRate)
 {
     return $this->taxFacade->getAccruedTaxAmountFromGrossPrice($grossPrice, $taxRate);
 }