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 Periodo */ public function setIdEstatus(\AppBundle\Entity\Estatus $idEstatus) { $this->idEstatus = $idEstatus; return $this; } /** * Get idEstatus * * @return \AppBundle\Entity\Estatus */ public function getIdEstatus() { return $this->idEstatus; } public function __toString() { return $this->getNombre(); } /** * Set fechaInicio * * @param \DateTime $fechaInicio * @return Periodo */ public function setFechaInicio($fechaInicio) { $this->fechaInicio = $fechaInicio; return $this; } /** * Get fechaInicio * * @return \DateTime */ public function getFechaInicio() { return $this->fechaInicio; } /** * Set fechaFin * * @param \DateTime $fechaFin * @return Periodo */ public function setFechaFin($fechaFin) { $this->fechaFin = $fechaFin; return $this; } /** * Get fechaFin * * @return \DateTime */ public function getFechaFin() { return $this->fechaFin; } }