public function __construct($webserviceObject, $user, $adb, $log)
 {
     parent::__construct($webserviceObject, $user, $adb, $log);
     $this->entityTableName = $this->getActorTables();
     if ($this->entityTableName === null) {
         throw new WebServiceException(WebServiceErrorCode::$UNKOWNENTITY, "Entity is not associated with any tables");
     }
     $this->meta = new VtigerTaxMeta($this->entityTableName, $webserviceObject, $adb, $user);
     $this->moduleFields = null;
 }