id; } public function getAgency(): ?string { return $this->agency; } public function setAgency(string $agency): static { $this->agency = $agency; return $this; } public function getName(): ?string { return $this->name; } public function setName(string $name): static { $this->name = $name; return $this; } public function getEmail(): ?string { return $this->email; } public function setEmail(string $email): static { $this->email = $email; return $this; } public function getPhone(): ?string { return $this->phone; } public function setPhone(?string $phone): static { $this->phone = $phone; return $this; } public function getCounty(): ?string { return $this->county; } public function setCounty(?string $county): static { $this->county = $county; return $this; } }