_reportModel = Mage::getResourceModel($modelClass); return $this; } public function getReportFull($from, $to) { return $this->_reportModel ->setDateRange($from, $to) ->setPageSize(false) ->setStoreIds($this->getStoreIds()); } public function getReport($from, $to) { return $this->_reportModel ->setDateRange($from, $to) ->setPageSize($this->getPageSize()) ->setStoreIds($this->getStoreIds()); } }