/**
  * 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;
 }
 /**
  * Clears the current object, sets all attributes to their default values and removes
  * outgoing references as well as back-references (from other objects to this one. Results probably in a database
  * change of those foreign objects when you call `save` there).
  */
 public function clear()
 {
     if (null !== $this->aКалендарь) {
         $this->aКалендарь->removeмтр($this);
     }
     if (null !== $this->aподрядчикимтр) {
         $this->aподрядчикимтр->removeмтр($this);
     }
     if (null !== $this->aПроекты) {
         $this->aПроекты->removeмтр($this);
     }
     if (null !== $this->aстатуссостояниятехники) {
         $this->aстатуссостояниятехники->removeмтр($this);
     }
     if (null !== $this->aтипытехникимтр) {
         $this->aтипытехникимтр->removeмтр($this);
     }
     $this->id = null;
     $this->vin = null;
     $this->тип_техники = null;
     $this->дата = null;
     $this->состояние_техники = null;
     $this->подрядчик = null;
     $this->проект = null;
     $this->дата_отчёта = null;
     $this->alreadyInSave = false;
     $this->clearAllReferences();
     $this->resetModified();
     $this->setNew(true);
     $this->setDeleted(false);
 }