public function DBUpdate()
 {
     $res = parent::DBUpdate();
     // Invoke extensions after the update (could be before)
     foreach (MetaModel::EnumPlugins('iApplicationObjectExtension') as $oExtensionInstance) {
         $oExtensionInstance->OnDBUpdate($this, self::GetCurrentChange());
     }
     return $res;
 }