category = $category; $this->question = $question; } public function getCategory() { return $this->category; } public function getQuestion() { return $this->question; } /** * Set id * * @param integer $id * @return CQuizQuestionCategory */ public function setIid($id) { $this->iid = $id; return $this; } /** * Get id * * @return integer */ public function getIid() { return $this->iid; } /** * Set cId * * @param integer $cId * @return CQuizQuestionRelCategory */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * Set questionId * * @param integer $questionId * @return CQuizQuestionRelCategory */ public function setQuestionId($questionId) { $this->questionId = $questionId; return $this; } /** * Get questionId * * @return integer */ public function getQuestionId() { return $this->questionId; } /** * Set categoryId * * @param integer $categoryId * @return CQuizQuestionRelCategory */ public function setCategoryId($categoryId) { $this->categoryId = $categoryId; return $this; } /** * Get categoryId * * @return integer */ public function getCategoryId() { return $this->categoryId; } }