Exemplo n.º 1
0
 /**
  * @param CTenantSocials $oSocial
  *
  * @return bool
  */
 public function UpdateSocial(CTenantSocials $oSocial)
 {
     $bResult = $this->oConnection->Execute($this->oCommandCreator->UpdateSocial($oSocial));
     $this->throwDbExceptionIfExist();
     return $bResult;
 }
Exemplo n.º 2
0
 /**
  * @param int $iTenantId
  *
  * @return bool
  */
 public function UpdateTenantMainCapa($iTenantId, $sCapa)
 {
     $bResult = $this->oConnection->Execute($this->oCommandCreator->UpdateTenantMainCapa($iTenantId, $sCapa));
     $this->throwDbExceptionIfExist();
     return $bResult;
 }