Пример #1
0
 /**
  * 
  * @param type $sModule
  * @param type $sType
  * @param type $sUUID
  * @return type
  */
 public function createEntity($sModule, $sType, $sUUID)
 {
     $bResult = false;
     if ($this->oConnection->Execute($this->oCommandCreator->createEntity($sModule, $sType, $sUUID))) {
         $bResult = $this->oConnection->GetLastInsertId();
     }
     $this->throwDbExceptionIfExist();
     return $bResult;
 }