Esempio n. 1
0
 /**
  * @param string $ProductCode
  * @param ShipmentDate $ShipmentDate
  * @param DeclaredValueOfGoods $DeclaredValueOfGoods
  * @param string $DeclaredValueOfGoodsCurrency
  * @param Account $Account
  * @param Dutiable $Dutiable
  * @param string $DescriptionOfContent
  * @param AccountPaidBy $AccountPaidBy
  * @param string $ShipmentReference
  * @param string $TermsOfTrade
  * @param ShipmentItemTDType $ShipmentItem
  * @param ShipmentServiceTD $Service
  * @param ShipmentNotificationType $Notification
  * @param string $NotificationEmailText
  * @access public
  */
 public function __construct($ProductCode, $ShipmentDate, $DeclaredValueOfGoods, $DeclaredValueOfGoodsCurrency, $Account, $Dutiable, $DescriptionOfContent, $AccountPaidBy, $ShipmentReference, $TermsOfTrade, $ShipmentItem, $Service, $Notification, $NotificationEmailText)
 {
     parent::__construct($ProductCode, $ShipmentDate, $DeclaredValueOfGoods, $DeclaredValueOfGoodsCurrency);
     $this->Account = $Account;
     $this->Dutiable = $Dutiable;
     $this->DescriptionOfContent = $DescriptionOfContent;
     $this->AccountPaidBy = $AccountPaidBy;
     $this->ShipmentReference = $ShipmentReference;
     $this->TermsOfTrade = $TermsOfTrade;
     $this->ShipmentItem = $ShipmentItem;
     $this->Service = $Service;
     $this->Notification = $Notification;
     $this->NotificationEmailText = $NotificationEmailText;
 }
Esempio n. 2
0
 /**
  * @param string $ProductCode
  * @param ShipmentDate $ShipmentDate
  * @param DeclaredValueOfGoods $DeclaredValueOfGoods
  * @param string $DeclaredValueOfGoodsCurrency
  * @param EKP $EKP
  * @param Attendance $Attendance
  * @param string $CustomerReference
  * @param string $Description
  * @param string $DeliveryRemarks
  * @param ShipmentItemDDType $ShipmentItem
  * @param ShipmentServiceDD $Service
  * @param ShipmentNotificationType $Notification
  * @param string $NotificationEmailText
  * @param BankType $BankData
  * @access public
  */
 public function __construct($ProductCode, $ShipmentDate, $DeclaredValueOfGoods, $DeclaredValueOfGoodsCurrency, $EKP, $Attendance, $CustomerReference, $Description, $DeliveryRemarks, $ShipmentItem, $Service, $Notification, $NotificationEmailText, $BankData)
 {
     parent::__construct($ProductCode, $ShipmentDate, $DeclaredValueOfGoods, $DeclaredValueOfGoodsCurrency);
     $this->EKP = $EKP;
     $this->Attendance = $Attendance;
     $this->CustomerReference = $CustomerReference;
     $this->Description = $Description;
     $this->DeliveryRemarks = $DeliveryRemarks;
     $this->ShipmentItem = $ShipmentItem;
     $this->Service = $Service;
     $this->Notification = $Notification;
     $this->NotificationEmailText = $NotificationEmailText;
     $this->BankData = $BankData;
 }