/**
  * Get the associated Childпрограммы object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return Childпрограммы The associated Childпрограммы object.
  * @throws PropelException
  */
 public function getпрограммы(ConnectionInterface $con = null)
 {
     if ($this->aпрограммы === null && $this->тип_программы !== null) {
         $this->aпрограммы = ChildпрограммыQuery::create()->findPk($this->тип_программы, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->aпрограммы->addпроизводственныепрограммыs($this);
            */
     }
     return $this->aпрограммы;
 }
 /**
  * Returns the number of related программы objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      ConnectionInterface $con
  * @return int             Count of related программы objects.
  * @throws PropelException
  */
 public function countпрограммыs(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
 {
     $partial = $this->collпрограммыsPartial && !$this->isNew();
     if (null === $this->collпрограммыs || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collпрограммыs) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getпрограммыs());
         }
         $query = ChildпрограммыQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterByПроекты($this)->count($con);
     }
     return count($this->collпрограммыs);
 }
 /**
  * Builds a Criteria object containing the primary key for this object.
  *
  * Unlike buildCriteria() this method includes the primary key values regardless
  * of whether or not they have been modified.
  *
  * @throws LogicException if no primary key is defined
  *
  * @return Criteria The Criteria object containing value(s) for primary key(s).
  */
 public function buildPkeyCriteria()
 {
     $criteria = ChildпрограммыQuery::create();
     $criteria->add(программыTableMap::COL_ID, $this->id);
     return $criteria;
 }
 /**
  * Returns a new ChildпрограммыQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildпрограммыQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildпрограммыQuery) {
         return $criteria;
     }
     $query = new ChildпрограммыQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }