/**
  * 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;
 }
 /**
  * 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днинедели;
 }