예제 #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
파일: GroupTitle.php 프로젝트: blab2015/seh
 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);
     }
 }