コード例 #1
0
ファイル: Reservation.php プロジェクト: Rademade/MedOptima
 public function getServiceCollection()
 {
     if (is_null($this->_serviceCollection)) {
         $this->_serviceCollection = RM_Entity_ToMany_Proxy::get($this, 'Application_Model_Medical_Reservation_Service');
     }
     return $this->_serviceCollection;
 }
コード例 #2
0
ファイル: Doctor.php プロジェクト: Rademade/MedOptima
 public function getPostCollection()
 {
     if (is_null($this->_postCollection)) {
         $this->_postCollection = RM_Entity_ToMany_Proxy::get($this, 'Application_Model_Medical_Doctor_Post');
     }
     return $this->_postCollection;
 }