コード例 #1
0
 public function getCustomers()
 {
     if (is_null($this->_customers)) {
         $customer = new Customer_Model_Customer();
         $this->_customers = $customer->findAll(array("app_id" => $this->getId()));
     }
     return $this->_customers;
 }