c_id = $value; return $this; } /** * Get c_id * * @return integer */ public function get_c_id() { return $this->c_id; } /** * Set user_id * * @param integer $value * @return OnlineConnected */ public function set_user_id($value) { $this->user_id = $value; return $this; } /** * Get user_id * * @return integer */ public function get_user_id() { return $this->user_id; } /** * Set last_connection * * @param datetime $value * @return OnlineConnected */ public function set_last_connection($value) { $this->last_connection = $value; return $this; } /** * Get last_connection * * @return datetime */ public function get_last_connection() { return $this->last_connection; } }