nombre = $nombre; return $this; } /** * Get nombre * * @return string */ public function getNombre() { return $this->nombre; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set idEstatus * * @param \AppBundle\Entity\Estatus $idEstatus * @return ActividadDocente */ public function setIdEstatus(\AppBundle\Entity\Estatus $idEstatus) { $this->idEstatus = $idEstatus; return $this; } /** * Get idEstatus * * @return \AppBundle\Entity\Estatus */ public function getIdEstatus() { return $this->idEstatus; } /** * Get toString * * @return string */ public function __toString() { return $this->getNombre(); } }