<?php
declare(strict_types=1);
namespace App\Entity\Service;
use App\Repository\BlogCategorieRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\DBAL\Types\Types;
use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
#[ORM\Entity()]
class MedecineGeneraleTranslation implements TranslationInterface
{
use TranslationTrait;
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $bloc1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $blocService1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $blocService2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $blocService3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $blocService4 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $blocService5 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $blocService6 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $blocCheckup = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $blocService7 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $blocService8 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $blocService9 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $blocTemoignage1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $blocTemoignage2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $temoignage1Titre = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $temoignage2Titre = null;
public function getId(): ?int
{
return $this->id;
}
public function getBloc1(): ?string
{
return $this->bloc1;
}
public function setBloc1(?string $bloc1): static
{
$this->bloc1 = $bloc1;
return $this;
}
public function getBlocService1(): ?string
{
return $this->blocService1;
}
public function setBlocService1(?string $blocService1): static
{
$this->blocService1 = $blocService1;
return $this;
}
public function getBlocService2(): ?string
{
return $this->blocService2;
}
public function setBlocService2(?string $blocService2): static
{
$this->blocService2 = $blocService2;
return $this;
}
public function getBlocService3(): ?string
{
return $this->blocService3;
}
public function setBlocService3(?string $blocService3): static
{
$this->blocService3 = $blocService3;
return $this;
}
public function getBlocService4(): ?string
{
return $this->blocService4;
}
public function setBlocService4(?string $blocService4): static
{
$this->blocService4 = $blocService4;
return $this;
}
public function getBlocService5(): ?string
{
return $this->blocService5;
}
public function setBlocService5(?string $blocService5): static
{
$this->blocService5 = $blocService5;
return $this;
}
public function getBlocService6(): ?string
{
return $this->blocService6;
}
public function setBlocService6(?string $blocService6): static
{
$this->blocService6 = $blocService6;
return $this;
}
public function getBlocCheckup(): ?string
{
return $this->blocCheckup;
}
public function setBlocCheckup(?string $blocCheckup): static
{
$this->blocCheckup = $blocCheckup;
return $this;
}
public function getBlocService7(): ?string
{
return $this->blocService7;
}
public function setBlocService7(?string $blocService7): static
{
$this->blocService7 = $blocService7;
return $this;
}
public function getBlocService8(): ?string
{
return $this->blocService8;
}
public function setBlocService8(?string $blocService8): static
{
$this->blocService8 = $blocService8;
return $this;
}
public function getBlocService9(): ?string
{
return $this->blocService9;
}
public function setBlocService9(?string $blocService9): static
{
$this->blocService9 = $blocService9;
return $this;
}
public function getBlocTemoignage1(): ?string
{
return $this->blocTemoignage1;
}
public function setBlocTemoignage1(?string $blocTemoignage1): static
{
$this->blocTemoignage1 = $blocTemoignage1;
return $this;
}
public function getBlocTemoignage2(): ?string
{
return $this->blocTemoignage2;
}
public function setBlocTemoignage2(?string $blocTemoignage2): static
{
$this->blocTemoignage2 = $blocTemoignage2;
return $this;
}
public function getTemoignage1Titre(): ?string
{
return $this->temoignage1Titre;
}
public function setTemoignage1Titre(?string $temoignage1Titre): static
{
$this->temoignage1Titre = $temoignage1Titre;
return $this;
}
public function getTemoignage2Titre(): ?string
{
return $this->temoignage2Titre;
}
public function setTemoignage2Titre(?string $temoignage2Titre): static
{
$this->temoignage2Titre = $temoignage2Titre;
return $this;
}
}