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