taxRateBuilder = $this->loadService(TaxRateBuilder::class); } public function createTaxRate(string $name, float $value): TaxRate { $taxRate = $this->taxRateBuilder->instanciateTaxRate(); $taxRate->setName($name); $taxRate->setValue($value); $taxRate->save(); return $taxRate; } }