Esempio n. 1
0
 /**
  * @param Contact $contact
  */
 public function removeAssociate(Contact $contact)
 {
     $this->associate->removeElement($contact);
 }
Esempio n. 2
0
 /**
  * @param Collections\Collection $collection
  */
 public function removeContact(Collections\Collection $collection)
 {
     foreach ($collection as $singleContact) {
         $this->contact->removeElement($singleContact);
     }
 }