예제 #1
0
파일: Auth2Sale.php 프로젝트: vmdoh/php-epn
 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
파일: AuthDel.php 프로젝트: vmdoh/php-epn
 public function __construct($ePNAccount, $RestrictKey, $TransID)
 {
     parent::__construct($ePNAccount, $RestrictKey);
     $this->TransID = $TransID;
     $this->setTranType('AuthDel');
 }