/**
  * Method called to associate a Concept object to this object
  * through the Concept foreign key attribute
  *
  * @param      Concept $l Concept
  * @return     void
  * @throws     PropelException
  */
 public function addConcept(Concept $l)
 {
     $this->collConcepts[] = $l;
     $l->setConceptProperty($this);
 }