/**
  * Renvoie les Qgs liés à la collection
  * @return QgCollection
  */
 public function getQgs()
 {
     if (is_null($this->cacheQgs)) {
         $this->cacheQgs = QgBusiness::getFromUtilisateurs($this);
         $this->cacheQgs->store();
     }
     return $this->cacheQgs;
 }
 /**
  * Renvoie les Qgs liés aux Competences de cette collection
  * @return QgCollection
  */
 public function getQgs()
 {
     if (is_null($this->cacheQgs)) {
         $this->cacheQgs = QgBusiness::getFromCompetences($this);
         $this->cacheQgs->store();
     }
     return $this->cacheQgs;
 }
Example #3
0
 /**
  * @return void
  */
 public function delete()
 {
     QgBusiness::delete($this);
 }
Example #4
0
 /**
  * Renvoie les Qgs liés à l'objet
  * @return QgCollection
  */
 public function getQgs()
 {
     if (is_null($this->cacheQgs)) {
         $this->cacheQgs = QgBusiness::getByJoueur($this);
         $this->cacheQgs->store();
     }
     return $this->cacheQgs;
 }