[export][person] Feature: add filter and aggregator by geographical unit on person

This commit is contained in:
2022-10-04 22:17:16 +02:00
parent fc567868c1
commit 432acc0ace
7 changed files with 327 additions and 1 deletions

View File

@@ -53,6 +53,13 @@ class GeographicalUnit
return $this->id;
}
protected function setId(int $id): self
{
$this->id = $id;
return $this;
}
public function getUnitName(): ?string
{
return $this->unitName;