コード例 #1
0
ファイル: ProductType.php プロジェクト: JiaoMing/dhl-1
 /**
  * @param ID $id
  * @param IDREF $idref
  * @param string $name
  * @param ProductDescType $ProductDesc
  * @param ServiceType[] $Service
  * @param string $collectionServices
  * @access public
  */
 public function __construct($id, $idref, $name, $ProductDesc, $Service, $collectionServices)
 {
     parent::__construct($id, $idref, $name);
     $this->ProductDesc = $ProductDesc;
     $this->Service = $Service;
     $this->collectionServices = $collectionServices;
 }
コード例 #2
0
 /**
  * @param ID $id
  * @param IDREF $idref
  * @param string $name
  * @param string $features
  * @param string $attributes
  * @param string $displayName
  * @param string $displayDescription
  * @access public
  */
 public function __construct($id, $idref, $name, $features, $attributes, $displayName, $displayDescription)
 {
     parent::__construct($id, $idref, $name);
     $this->features = $features;
     $this->attributes = $attributes;
     $this->displayName = $displayName;
     $this->displayDescription = $displayDescription;
 }
コード例 #3
0
ファイル: BaseProductType.php プロジェクト: JiaoMing/dhl-1
 /**
  * @param ID $id
  * @param IDREF $idref
  * @param string $name
  * @param PricesType[] $Prices
  * @param BaseProductDescType $BaseProductDesc
  * @param ProductType[] $Product
  * @param string $defaultProduct
  * @param string $ekp
  * @param boolean $priceLevels
  * @access public
  */
 public function __construct($id, $idref, $name, $Prices, $BaseProductDesc, $Product, $defaultProduct, $ekp, $priceLevels)
 {
     parent::__construct($id, $idref, $name);
     $this->Prices = $Prices;
     $this->BaseProductDesc = $BaseProductDesc;
     $this->Product = $Product;
     $this->defaultProduct = $defaultProduct;
     $this->ekp = $ekp;
     $this->priceLevels = $priceLevels;
 }
コード例 #4
0
 /**
  * @param ID $id
  * @param IDREF $idref
  * @param string $name
  * @param BaseProductType[] $BaseProduct
  * @param boolean $isSyntetic
  * @param string $iso2
  * @param int $iso3num
  * @param string $displayName
  * @param string $defaultBaseProduct
  * @access public
  */
 public function __construct($id, $idref, $name, $BaseProduct, $isSyntetic, $iso2, $iso3num, $displayName, $defaultBaseProduct)
 {
     parent::__construct($id, $idref, $name);
     $this->BaseProduct = $BaseProduct;
     $this->isSyntetic = $isSyntetic;
     $this->iso2 = $iso2;
     $this->iso3num = $iso3num;
     $this->displayName = $displayName;
     $this->defaultBaseProduct = $defaultBaseProduct;
 }
コード例 #5
0
ファイル: ServiceType.php プロジェクト: JiaoMing/dhl-1
 /**
  * @param ID $id
  * @param IDREF $idref
  * @param string $name
  * @param ServiceDescType $ServiceDesc
  * @param PricesType[] $Prices
  * @param boolean $priceLevels
  * @param boolean $selected
  * @param string $ekp
  * @param boolean $disabled
  * @access public
  */
 public function __construct($id, $idref, $name, $ServiceDesc, $Prices, $priceLevels, $selected, $ekp, $disabled)
 {
     parent::__construct($id, $idref, $name);
     $this->ServiceDesc = $ServiceDesc;
     $this->Prices = $Prices;
     $this->priceLevels = $priceLevels;
     $this->selected = $selected;
     $this->ekp = $ekp;
     $this->disabled = $disabled;
 }
コード例 #6
0
ファイル: CollectionType.php プロジェクト: JiaoMing/dhl-1
 /**
  * @param ID $id
  * @param IDREF $idref
  * @param string $name
  * @param CollectionDescType $CollectionDesc
  * @param PricesType[] $Prices
  * @param string $type
  * @param string $nonWorkingWeekDays
  * @param int $earliestPickupOffset
  * @param string $pickupTimeLimit
  * @param int $maxCollectableItems
  * @param string $timeWindows
  * @param boolean $allowStandalone
  * @access public
  */
 public function __construct($id, $idref, $name, $CollectionDesc, $Prices, $type, $nonWorkingWeekDays, $earliestPickupOffset, $pickupTimeLimit, $maxCollectableItems, $timeWindows, $allowStandalone)
 {
     parent::__construct($id, $idref, $name);
     $this->CollectionDesc = $CollectionDesc;
     $this->Prices = $Prices;
     $this->type = $type;
     $this->nonWorkingWeekDays = $nonWorkingWeekDays;
     $this->earliestPickupOffset = $earliestPickupOffset;
     $this->pickupTimeLimit = $pickupTimeLimit;
     $this->maxCollectableItems = $maxCollectableItems;
     $this->timeWindows = $timeWindows;
     $this->allowStandalone = $allowStandalone;
 }