_storage = $storage; $this->_result = new Result(); parent::__construct( array(), array( // this mapper table on db ), parent::CASE_INSENSITIVE ); } public function getDataTest(){ $data = $this->_storage->loadDataTest(); return $data; } public function saveGlobal($param, $table){ $data = $this->_storage->saveGlobal($param, $table); return $data; } public function updateGlobal($tabel, $data, $where){ $data = $this->_storage->updateGlobal($tabel, $data, $where); return $data; } }