Beispiel #1
0
 function getEstimates()
 {
     if (empty($this->estimates)) {
         $finder = new Estimate();
         $this->estimates = $finder->find(array('project_id' => $this->id, 'sort' => 'id ASC'));
     }
     return $this->estimates;
 }