/**
  * 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);
     }
     $this->id = null;
     $this->дата = 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);
 }