/**
  * Returns a zero-initialized Money object
  * to be assigned to product prices
  *
  * @return MoneyInterface
  */
 protected function createZeroAmountMoney()
 {
     return Money::create(0, $this->currencyWrapper->getDefaultCurrency());
 }