/**
  * Declares an association between this object and a Ciudad object.
  *
  * @param      Ciudad $v
  * @return     Cliente The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setCiudadRelatedByIdCiudad(Ciudad $v = null)
 {
     if ($v === null) {
         $this->setIdCiudad(NULL);
     } else {
         $this->setIdCiudad($v->getIdciudad());
     }
     $this->aCiudadRelatedByIdCiudad = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Ciudad object, it will not be re-added.
     if ($v !== null) {
         $v->addClienteRelatedByIdCiudad($this);
     }
     return $this;
 }