cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * Set notebookId * * @param integer $notebookId * @return EntityCNotebook */ public function setNotebookId($notebookId) { $this->notebookId = $notebookId; return $this; } /** * Get notebookId * * @return integer */ public function getNotebookId() { return $this->notebookId; } /** * Set userId * * @param integer $userId * @return EntityCNotebook */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId * * @return integer */ public function getUserId() { return $this->userId; } /** * Set course * * @param string $course * @return EntityCNotebook */ public function setCourse($course) { $this->course = $course; return $this; } /** * Get course * * @return string */ public function getCourse() { return $this->course; } /** * Set sessionId * * @param integer $sessionId * @return EntityCNotebook */ public function setSessionId($sessionId) { $this->sessionId = $sessionId; return $this; } /** * Get sessionId * * @return integer */ public function getSessionId() { return $this->sessionId; } /** * Set title * * @param string $title * @return EntityCNotebook */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title * * @return string */ public function getTitle() { return $this->title; } /** * Set description * * @param string $description * @return EntityCNotebook */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return string */ public function getDescription() { return $this->description; } /** * Set creationDate * * @param \DateTime $creationDate * @return EntityCNotebook */ public function setCreationDate($creationDate) { $this->creationDate = $creationDate; return $this; } /** * Get creationDate * * @return \DateTime */ public function getCreationDate() { return $this->creationDate; } /** * Set updateDate * * @param \DateTime $updateDate * @return EntityCNotebook */ public function setUpdateDate($updateDate) { $this->updateDate = $updateDate; return $this; } /** * Get updateDate * * @return \DateTime */ public function getUpdateDate() { return $this->updateDate; } /** * Set status * * @param integer $status * @return EntityCNotebook */ public function setStatus($status) { $this->status = $status; return $this; } /** * Get status * * @return integer */ public function getStatus() { return $this->status; } }