id; } public function getCity(): ?City { return $this->city; } public function setCity(City $city): self { $this->city = $city; return $this; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getCountRow(): ?int { return $this->countRow; } public function setCountRow(int $countRow): self { $this->countRow = $countRow; return $this; } public function getActive(): ?bool { return $this->active; } public function setActive(bool $active): self { $this->active = $active; return $this; } public function getRating(): ?float { return $this->rating; } public function setRating(float $rating): self { $this->rating = $rating; return $this; } public function getDateCreate(): ?\DateTimeInterface { return $this->dateCreate; } public function setDateCreate(\DateTimeInterface $dateCreate): self { $this->dateCreate = $dateCreate; return $this; } public function isActive(): ?bool { return $this->active; } public function getFilial(): ?Filial { return $this->filial; } public function setFilial(?Filial $filial): static { $this->filial = $filial; return $this; } }