Ejemplo n.º 1
0
 public function addGroup(Group $group)
 {
     $group->setRequestedTypeOfRoom($this);
     if (!$this->groups->contains($group)) {
         $this->groups->add($group);
     }
 }
Ejemplo n.º 2
0
 public function addGroup(Group $group)
 {
     $group->setDestinationCountry($this);
     if (!$this->groups->contains($group)) {
         $this->groups->add($group);
     }
 }
Ejemplo n.º 3
0
 public function addGroup(Group $group)
 {
     $group->setGroupTitle($this);
     if (!$this->groups->contains($group)) {
         $this->groups->add($group);
     }
 }
Ejemplo n.º 4
0
 public function addGroup(Group $group)
 {
     $group->setRequestedHotelCategory($this);
     if (!$this->groups->contains($group)) {
         $this->groups->add($group);
     }
 }