Ejemplo n.º 1
0
 /**
  * @param CGroup $oGroup
  * @return bool
  */
 public function createGroup($oGroup)
 {
     $bResult = false;
     if ($this->oConnection->Execute($this->oCommandCreator->createGroup($oGroup))) {
         $oGroup->IdGroup = $this->oConnection->GetLastInsertId('awm_addr_groups', 'id_group');
         $bResult = $this->updateGroup($oGroup);
     }
     return $bResult;
 }