Exemple #1
0
 /**
  * @param ID $id
  * @param IDREF $idref
  * @param AmountType $bruttoPrice
  * @param VatType $vat
  * @param string $name
  * @param int $pk
  * @param string $country
  * @param dateTime $startTime
  * @param dateTime $endTime
  * @access public
  */
 public function __construct($id, $idref, $bruttoPrice, $vat, $name, $pk, $country, $startTime, $endTime)
 {
     parent::__construct($id, $idref);
     $this->bruttoPrice = $bruttoPrice;
     $this->vat = $vat;
     $this->name = $name;
     $this->pk = $pk;
     $this->country = $country;
     $this->startTime = $startTime;
     $this->endTime = $endTime;
 }
Exemple #2
0
 /**
  * @param ID $id
  * @param IDREF $idref
  * @param PriceType[] $Price
  * @param int $level
  * @access public
  */
 public function __construct($id, $idref, $Price, $level)
 {
     parent::__construct($id, $idref);
     $this->Price = $Price;
     $this->level = $level;
 }
 /**
  * @param ID $id
  * @param IDREF $idref
  * @param string $name
  * @access public
  */
 public function __construct($id, $idref, $name)
 {
     parent::__construct($id, $idref);
     $this->name = $name;
 }