コード例 #1
0
 public function addVCounseling(VCounseling $l)
 {
     $this->collVCounselings[] = $l;
     $l->setAcademicCalendar($this);
 }
コード例 #2
0
ファイル: BaseEmployee.php プロジェクト: taryono/school
 public function addVCounseling(VCounseling $l)
 {
     $this->collVCounselings[] = $l;
     $l->setEmployee($this);
 }
コード例 #3
0
ファイル: BaseClassGroup.php プロジェクト: taryono/school
 public function addVCounseling(VCounseling $l)
 {
     $this->collVCounselings[] = $l;
     $l->setClassGroup($this);
 }