WellCommerce\Bundle\AppBundle\Entity\Price::setNetAmount PHP Method

setNetAmount() public method

public setNetAmount ( float $netAmount )
$netAmount float
    public function setNetAmount(float $netAmount)
    {
        $this->netAmount = $netAmount;
    }

Usage Example

Ejemplo n.º 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::setNetAmount