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