id = $id; return $this; } /** * Gets id. * * @return int */ public function getId() { return $this->id; } /** * Set numberOfEmployees * * @param integer $numberOfEmployees * * @return CotisationStaffInfos */ public function setNumberOfEmployees($numberOfEmployees) { $this->numberOfEmployees = $numberOfEmployees; return $this; } /** * Get numberOfEmployees * * @return integer */ public function getNumberOfEmployees() { return $this->numberOfEmployees; } /** * Set numberOfTeachers * * @param integer $numberOfTeachers * * @return CotisationStaffInfos */ public function setNumberOfTeachers($numberOfTeachers) { $this->numberOfTeachers = $numberOfTeachers; return $this; } /** * Get numberOfTeachers * * @return integer */ public function getNumberOfTeachers() { return $this->numberOfTeachers; } /** * Set totalFullTimeEquivalents * * @param integer $totalFullTimeEquivalents * * @return CotisationStaffInfos */ public function setTotalFullTimeEquivalents($totalFullTimeEquivalents) { $this->totalFullTimeEquivalents = $totalFullTimeEquivalents; return $this; } /** * Get totalFullTimeEquivalents * * @return integer */ public function getTotalFullTimeEquivalents() { return $this->totalFullTimeEquivalents; } /** * Set numberOfMinors * * @param integer $numberOfMinors * * @return CotisationStaffInfos */ public function setNumberOfMinors($numberOfMinors) { $this->numberOfMinors = $numberOfMinors; return $this; } /** * Get numberOfMinors * * @return integer */ public function getNumberOfMinors() { return $this->numberOfMinors; } /** * Set cotisationByYear * * @param \AppBundle\Entity\Organization\CotisationByYear $cotisationByYear * * @return CotisationStaffInfos */ public function setCotisationByYear(\AppBundle\Entity\Organization\CotisationByYear $cotisationByYear = null) { $this->cotisationByYear = $cotisationByYear; return $this; } /** * Get cotisationByYear * * @return \AppBundle\Entity\Organization\CotisationByYear */ public function getCotisationByYear() { return $this->cotisationByYear; } }