WellCommerce\Bundle\AppBundle\Entity\Price::setTaxAmount PHP 메소드

setTaxAmount() 공개 메소드

public setTaxAmount ( float $taxAmount )
$taxAmount float
    public function setTaxAmount(float $taxAmount)
    {
        $this->taxAmount = $taxAmount;
    }

Usage Example

예제 #1
0
 public function create() : PriceInterface
 {
     $price = new Price();
     $price->setGrossAmount(0);
     $price->setNetAmount(0);
     $price->setTaxAmount(0);
     $price->setTaxRate(0);
     $price->setCurrency('');
     return $price;
 }
All Usage Examples Of WellCommerce\Bundle\AppBundle\Entity\Price::setTaxAmount