c_id = $value; return $this; } /** * Get c_id * * @return integer */ public function get_c_id() { return $this->c_id; } /** * Set id * * @param integer $value * @return QuizQuestionOption */ public function set_id($value) { $this->id = $value; return $this; } /** * Get id * * @return integer */ public function get_id() { return $this->id; } /** * Set question_id * * @param integer $value * @return QuizQuestionOption */ public function set_question_id($value) { $this->question_id = $value; return $this; } /** * Get question_id * * @return integer */ public function get_question_id() { return $this->question_id; } /** * Set name * * @param string $value * @return QuizQuestionOption */ public function set_name($value) { $this->name = $value; return $this; } /** * Get name * * @return string */ public function get_name() { return $this->name; } /** * Set position * * @param integer $value * @return QuizQuestionOption */ public function set_position($value) { $this->position = $value; return $this; } /** * Get position * * @return integer */ public function get_position() { return $this->position; } }