src/Entity/SessionsFormations.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SessionsFormationsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. /**
  8.  * @ORM\Entity(repositoryClass=SessionsFormationsRepository::class)
  9.  */
  10. class SessionsFormations
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.     * @ORM\Column(type="date", nullable=true)
  20.      */
  21.     private $Date;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $Lieu;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $Tarifs;
  30.     /**
  31.      * @ORM\ManyToOne(targetEntity=Formations::class, inversedBy="sessionsFormations")
  32.      */
  33.     private $Formations;
  34.     /**
  35.      * @ORM\Column(type="string", length=255, nullable=true)
  36.      */
  37.     private $Type;
  38.     /**
  39.      * @ORM\Column(type="string", length=255, nullable=true)
  40.      */
  41.     private $DateEn;
  42.     /**
  43.      * @ORM\Column(type="string", length=255, nullable=true)
  44.      */
  45.     private $LieuEn;
  46.     /**
  47.      * @ORM\Column(type="string", length=255, nullable=true)
  48.      */
  49.     private $TarifsEn;
  50.     /**
  51.      * @ORM\ManyToOne(targetEntity=TypesFormations::class, inversedBy="sessionsFormations")
  52.      */
  53.     private $TypesFormations;
  54.     /**
  55.      * @ORM\Column(type="string", length=255, nullable=true)
  56.      */
  57.     private $LanguesFr;
  58.     /**
  59.      * @ORM\Column(type="string", length=255, nullable=true)
  60.      */
  61.     private $LanguesEn;
  62.     public function getId(): ?int
  63.     {
  64.         return $this->id;
  65.     }
  66.      public function getDate(): ?\DateTimeInterface
  67.     {
  68.         return $this->Date;
  69.     }
  70.     public function setDate(?\DateTimeInterface $Date): self
  71.     {
  72.         $this->Date $Date;
  73.         return $this;
  74.     }
  75.     public function getLieu(): ?string
  76.     {
  77.         return $this->Lieu;
  78.     }
  79.     public function setLieu(?string $Lieu): self
  80.     {
  81.         $this->Lieu $Lieu;
  82.         return $this;
  83.     }
  84.     public function getTarifs(): ?string
  85.     {
  86.         return $this->Tarifs;
  87.     }
  88.     public function setTarifs(?string $Tarifs): self
  89.     {
  90.         $this->Tarifs $Tarifs;
  91.         return $this;
  92.     }
  93.     public function getFormations(): ?Formations
  94.     {
  95.         return $this->Formations;
  96.     }
  97.     public function setFormations(?Formations $Formations): self
  98.     {
  99.         $this->Formations $Formations;
  100.         return $this;
  101.     }
  102.     public function getType(): ?string
  103.     {
  104.         return $this->Type;
  105.     }
  106.     public function setType(?string $Type): self
  107.     {
  108.         $this->Type $Type;
  109.         return $this;
  110.     }
  111.     public function getDateEn(): ?string
  112.     {
  113.         return $this->DateEn;
  114.     }
  115.     public function setDateEn(?string $DateEn): self
  116.     {
  117.         $this->DateEn $DateEn;
  118.         return $this;
  119.     }
  120.     public function getLieuEn(): ?string
  121.     {
  122.         return $this->LieuEn;
  123.     }
  124.     public function setLieuEn(?string $LieuEn): self
  125.     {
  126.         $this->LieuEn $LieuEn;
  127.         return $this;
  128.     }
  129.     public function getTarifsEn(): ?string
  130.     {
  131.         return $this->TarifsEn;
  132.     }
  133.     public function setTarifsEn(?string $TarifsEn): self
  134.     {
  135.         $this->TarifsEn $TarifsEn;
  136.         return $this;
  137.     }
  138.     public function getTypesFormations(): ?TypesFormations
  139.     {
  140.         return $this->TypesFormations;
  141.     }
  142.     public function setTypesFormations(?TypesFormations $TypesFormations): self
  143.     {
  144.         $this->TypesFormations $TypesFormations;
  145.         return $this;
  146.     }
  147.     public function getLanguesFr(): ?string
  148.     {
  149.         return $this->LanguesFr;
  150.     }
  151.     public function setLanguesFr(?string $LanguesFr): self
  152.     {
  153.         $this->LanguesFr $LanguesFr;
  154.         return $this;
  155.     }
  156.     public function getLanguesEn(): ?string
  157.     {
  158.         return $this->LanguesEn;
  159.     }
  160.     public function setLanguesEn(?string $LanguesEn): self
  161.     {
  162.         $this->LanguesEn $LanguesEn;
  163.         return $this;
  164.     }
  165. }