_productId = $productId; return $this; } public function getProductId() { if (null === $this->_productId) { throw new Qs_Exception('Product ID is not set.'); } return $this->_productId; } protected function _joinProduct(Zend_Db_Select $select) { $select->join( $this->_getPair('Product'), '`Product`.`id` = `' . $this->_tableAlias . '`.`productId`', ['productTitle' => 'title']); return $this; } }