/** * Retorna o valor antigo do registro antes de realizar a atualização * * @return Ca_Model_Estado_Mapper */ public function getValueOld() { if (!$this->_dataOld instanceof Ca_Model_Estado_Mapper) { $this->_dataOld = new Ca_Model_Estado_Mapper(); $this->_dataOld->setId($this->getId()); $this->_dataOld->retrive(); } return $this->_dataOld; }
/** * Retorna o SQL Base */ protected function _getSqlBase() { $sql = parent::_getSqlBase(); return $sql; }