Ejemplo n.º 1
0
 /**
  * Deletes calendar user settings from the storage. User identifier is used for look up.
  * 
  * @param int $iUserId User identifier.
  * 
  * @return bool
  */
 public function deleteCalUser($iUserId)
 {
     $bResult = $this->oConnection->Execute($this->oCommandCreator->deleteCalUserQuery($iUserId));
     $this->throwDbExceptionIfExist();
     return $bResult;
 }