Пример #1
0
 public function __construct($ePNAccount, $RestrictKey, $TransID, $Total)
 {
     parent::__construct($ePNAccount, $RestrictKey);
     $this->TransID = $TransID;
     $this->Total = $Total;
     $this->setTranType('Auth2Sale');
 }
Пример #2
0
 public function __construct($ePNAccount, $RestrictKey, $CardNo, $ExpMonth, $ExpYear, $Total, $Address, $Zip, $CVV2Type, $CVV2)
 {
     parent::__construct($ePNAccount, $RestrictKey);
     $this->CardNo = $CardNo;
     $this->Total = $Total;
     $this->ExpMonth = $ExpMonth;
     $this->ExpYear = $ExpYear;
     $this->Address = $Address;
     $this->Zip = $Zip;
     $this->CVV2Type = $CVV2Type;
     $this->CVV2 = $CVV2;
 }
Пример #3
0
 public function __construct($ePNAccount, $RestrictKey, $TransID)
 {
     parent::__construct($ePNAccount, $RestrictKey);
     $this->TransID = $TransID;
     $this->setTranType('AuthDel');
 }