/**
  * Declares an association between this object and a ChildCountry object.
  *
  * @param  ChildCountry                      $v
  * @return \DpdPickup\Model\AddressIcirelais The current object (for fluent API support)
  * @throws PropelException
  */
 public function setCountry(ChildCountry $v = null)
 {
     if ($v === null) {
         $this->setCountryId(NULL);
     } else {
         $this->setCountryId($v->getId());
     }
     $this->aCountry = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildCountry object, it will not be re-added.
     if ($v !== null) {
         $v->addAddressIcirelais($this);
     }
     return $this;
 }
 /**
  * Filter the query by a related \DpdPickup\Model\Thelia\Model\Country object
  *
  * @param \DpdPickup\Model\Thelia\Model\Country|ObjectCollection $country    The related object(s) to use as filter
  * @param string                                                 $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildAddressIcirelaisQuery The current query, for fluid interface
  */
 public function filterByCountry($country, $comparison = null)
 {
     if ($country instanceof \DpdPickup\Model\Thelia\Model\Country) {
         return $this->addUsingAlias(AddressIcirelaisTableMap::COUNTRY_ID, $country->getId(), $comparison);
     } elseif ($country instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(AddressIcirelaisTableMap::COUNTRY_ID, $country->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByCountry() only accepts arguments of type \\DpdPickup\\Model\\Thelia\\Model\\Country or Collection');
     }
 }