<?php
declare(strict_types=1);
namespace App\Entity\Service;
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 MedecineEsthetiqueTranslation implements TranslationInterface
{
use TranslationTrait;
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = 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(length: 255, nullable: true)]
private ?string $blocService7 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $temoignage1Titre = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $blocTemoignage1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $temoignage2Titre = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $blocTemoignage2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $bloc1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $procedure1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $procedure2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $procedure3 = null;
public function getId(): ?int
{
return $this->id;
}
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 getBlocService7(): ?string
{
return $this->blocService7;
}
public function setBlocService7(?string $blocService7): static
{
$this->blocService7 = $blocService7;
return $this;
}
public function getTemoignage1Titre(): ?string
{
return $this->temoignage1Titre;
}
public function setTemoignage1Titre(?string $temoignage1Titre): static
{
$this->temoignage1Titre = $temoignage1Titre;
return $this;
}
public function getBlocTemoignage1(): ?string
{
return $this->blocTemoignage1;
}
public function setBlocTemoignage1(?string $blocTemoignage1): static
{
$this->blocTemoignage1 = $blocTemoignage1;
return $this;
}
public function getTemoignage2Titre(): ?string
{
return $this->temoignage2Titre;
}
public function setTemoignage2Titre(?string $temoignage2Titre): static
{
$this->temoignage2Titre = $temoignage2Titre;
return $this;
}
public function getBlocTemoignage2(): ?string
{
return $this->blocTemoignage2;
}
public function setBlocTemoignage2(?string $blocTemoignage2): static
{
$this->blocTemoignage2 = $blocTemoignage2;
return $this;
}
public function getBloc1(): ?string
{
return $this->bloc1;
}
public function setBloc1(?string $bloc1): static
{
$this->bloc1 = $bloc1;
return $this;
}
public function getProcedure1(): ?string
{
return $this->procedure1;
}
public function setProcedure1(?string $procedure1): static
{
$this->procedure1 = $procedure1;
return $this;
}
public function getProcedure2(): ?string
{
return $this->procedure2;
}
public function setProcedure2(?string $procedure2): static
{
$this->procedure2 = $procedure2;
return $this;
}
public function getProcedure3(): ?string
{
return $this->procedure3;
}
public function setProcedure3(?string $procedure3): static
{
$this->procedure3 = $procedure3;
return $this;
}
}