Inheritance: extends LineItemAction
 public function __construct($skipInventoryCheck = null)
 {
     parent::__construct();
     $this->skipInventoryCheck = $skipInventoryCheck;
 }
 public function __construct($LineItemActionType = NULL)
 {
     parent::__construct();
     $this->LineItemActionType = $LineItemActionType;
 }
 public function __construct($LineItemActionType = NULL)
 {
     if (get_parent_class('ReserveAndOverbookLineItems')) {
         parent::__construct();
     }
     $this->LineItemActionType = $LineItemActionType;
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
 }
 public function __construct($skipInventoryCheck = NULL, $LineItemActionType = NULL)
 {
     parent::__construct();
     $this->skipInventoryCheck = $skipInventoryCheck;
     $this->LineItemActionType = $LineItemActionType;
 }