Example #1
0
 public function isEqual(Recommandation $recommandation)
 {
     if ($recommandation->getNom() == $this->getNom() and $recommandation->getEmail() == $this->getEmail() and $recommandation->getTelephone() == $this->getTelephone() and $recommandation->getFonction() == $this->getFonction()) {
         return true;
     } else {
         return false;
     }
 }