_committeeId = $committeeId; } /** * @return null */ public function getCommitteeId() { return $this->_committeeId; } public function getListSelect() { if (null === $this->_select) { $this->_select = parent::getListSelect(); $this->_select->where('`' . $this->_getTableAlias() . '`.`committeeId` = ?', $this->_committeeId, Qs_Db::INT_TYPE); } return $this->_select; } public function initFromForm(array $data) { $data['committeeId'] = $this->getCommitteeId(); return parent::initFromForm($data); } }