diff --git a/src/Entity/StandardNoteMember.php b/src/Entity/StandardNoteMember.php new file mode 100644 index 0000000..8bc1eda --- /dev/null +++ b/src/Entity/StandardNoteMember.php @@ -0,0 +1,55 @@ +id; + } + + public function getStandardNote(): ?StandardNote + { + return $this->note; + } + + public function setStandardNote(?StandardNote $note): static + { + $this->note = $note; + + return $this; + } + + public function getPerson(): ?Member + { + return $this->person; + } + + public function setPerson(?Member $person): static + { + $this->person = $person; + + return $this; + } +} diff --git a/src/Entity/VisitNoteMembers.php b/src/Entity/VisitNoteMembers.php new file mode 100644 index 0000000..e9c9251 --- /dev/null +++ b/src/Entity/VisitNoteMembers.php @@ -0,0 +1,55 @@ +id; + } + + public function getVisitNote(): ?VisitNote + { + return $this->note; + } + + public function setVisitNote(?VisitNote $note): static + { + $this->note = $note; + + return $this; + } + + public function getPerson(): ?Member + { + return $this->person; + } + + public function setPerson(?Member $person): static + { + $this->person = $person; + + return $this; + } +}