Inheritance: extends LineItemAction
コード例 #1
0
 public function __construct($skipInventoryCheck = null)
 {
     parent::__construct();
     $this->skipInventoryCheck = $skipInventoryCheck;
 }
コード例 #2
0
 public function __construct($LineItemActionType = NULL)
 {
     parent::__construct();
     $this->LineItemActionType = $LineItemActionType;
 }
コード例 #3
0
 public function __construct($LineItemActionType = NULL)
 {
     if (get_parent_class('ReserveAndOverbookLineItems')) {
         parent::__construct();
     }
     $this->LineItemActionType = $LineItemActionType;
 }
コード例 #4
0
 public function __construct()
 {
     parent::__construct();
 }
コード例 #5
0
 public function __construct($skipInventoryCheck = NULL, $LineItemActionType = NULL)
 {
     parent::__construct();
     $this->skipInventoryCheck = $skipInventoryCheck;
     $this->LineItemActionType = $LineItemActionType;
 }