/**
  * @return float
  */
 public function getDefaultTaxRate()
 {
     return $this->taxFacade->getDefaultTaxRate();
 }
 /**
  * @return array
  */
 protected function createTaxRatesList()
 {
     $taxRateCollection = $this->taxFacade->getTaxRates();
     return new ObjectChoiceList($taxRateCollection->getTaxRates(), 'name', [], null, 'idTaxRate');
 }