Exemplo n.º 1
0
 /**
  * @param CurriculumInventoryReportInterface $report
  */
 public function addCurriculumInventoryReport(CurriculumInventoryReportInterface $report)
 {
     $this->curriculumInventoryReports->add($report);
 }
Exemplo n.º 2
0
 /**
  * {@inheritdoc}
  */
 public function removeCurriculumInventoryReport(CurriculumInventoryReportInterface $report)
 {
     if ($this->curriculumInventoryReports->contains($report)) {
         $this->curriculumInventoryReports->removeElement($report);
     }
 }