public function fetchPropertyAction()
 {
     $this->view->layout()->disableLayout();
     $this->_helper->viewRenderer->setNoRender(true);
     $handler = new Application_Model_Repository_Statement();
     $results = $handler->fetchProperty();
     Zend_Debug::dump($results, 'Application_Model_Repository_Statement::fetchProperty()', true);
     return true;
 }
 public function incrementCounter($bannerId)
 {
     $handler = new Application_Model_Repository_Statement();
     $handler->incrementCounter($bannerId);
     return true;
 }