/**
  * Filter the query by a related \подрядчикимтр object
  *
  * @param \подрядчикимтр|ObjectCollection $�одрядчикимтр The related object(s) to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @throws \Propel\Runtime\Exception\PropelException
  *
  * @return ChildмтрQuery The current query, for fluid interface
  */
 public function filterByподрядчикимтр($�одрядчикимтр, $comparison = null)
 {
     if ($�одрядчикимтр instanceof \подрядчикимтр) {
         return $this->addUsingAlias(мтрTableMap::COL_ПОДРЯДЧИК, $�одрядчикимтр->getId(), $comparison);
     } elseif ($�одрядчикимтр instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(мтрTableMap::COL_ПОДРЯДЧИК, $�одрядчикимтр->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByподрядчикимтр() only accepts arguments of type \\подрядчикимтр or Collection');
     }
 }
 /**
  * Exclude object from result
  *
  * @param   Childподрядчикимтр $�одрядчикимтр Object to remove from the list of results
  *
  * @return $this|ChildподрядчикимтрQuery The current query, for fluid interface
  */
 public function prune($�одрядчикимтр = null)
 {
     if ($�одрядчикимтр) {
         $this->addUsingAlias(подрядчикимтрTableMap::COL_ID, $�одрядчикимтр->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
 /**
  * Declares an association between this object and a Childподрядчикимтр object.
  *
  * @param  Childподрядчикимтр $v
  * @return $this|\мтр The current object (for fluent API support)
  * @throws PropelException
  */
 public function setподрядчикимтр(Childподрядчикимтр $v = null)
 {
     if ($v === null) {
         $this->setподрядчик(NULL);
     } else {
         $this->setподрядчик($v->getId());
     }
     $this->aподрядчикимтр = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Childподрядчикимтр object, it will not be re-added.
     if ($v !== null) {
         $v->addмтр($this);
     }
     return $this;
 }