idSession = $idSession; return $this; } /** * Get idSession * * @return integer */ public function getIdSession() { return $this->idSession; } /** * Set courseId * * @param integer $courseId * @return EntitySessionRelCourse */ public function setCourseId($courseId) { $this->courseId = $courseId; return $this; } /** * Get courseId * * @return integer */ public function getCourseId() { return $this->courseId; } /** * Set courseCode * * @param string $courseCode * @return EntitySessionRelCourse */ public function setCourseCode($courseCode) { $this->courseCode = $courseCode; return $this; } /** * Get courseCode * * @return string */ public function getCourseCode() { return $this->courseCode; } /** * Set nbrUsers * * @param integer $nbrUsers * @return EntitySessionRelCourse */ public function setNbrUsers($nbrUsers) { $this->nbrUsers = $nbrUsers; return $this; } /** * Get nbrUsers * * @return integer */ public function getNbrUsers() { return $this->nbrUsers; } }