<?php
namespace App\Entity;
use App\Repository\PrestationRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: PrestationRepository::class)]
#[ORM\Table(name: 'prestations')]
class Prestation
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(nullable: true)]
private ?bool $peages = null;
#[ORM\Column(nullable: true)]
private ?bool $parkingsCheckpoint = null;
#[ORM\Column(nullable: true)]
private ?bool $hebergementConducteur = null;
#[ORM\Column(nullable: true)]
private ?bool $pensionConducteur = null;
#[ORM\Column(nullable: true)]
private ?bool $relais = null;
#[ORM\Column(nullable: true)]
private ?bool $tunnelItalie = null;
#[ORM\Column(nullable: true)]
private ?bool $ferryShuttle = null;
#[ORM\Column(nullable: true)]
private ?bool $taxeAllemande = null;
public function __toString(): string
{
$speages = $this->peages?'peages,':'';
$sparkingsCheckpoint = $this->parkingsCheckpoint?'parkingsCheckpoint,':'';
$shebergementConducteur = $this->hebergementConducteur?'hebergementConducteur,':'';
$spensionConducteur = $this->pensionConducteur?'pensionConducteur,':'';
$srelais = $this->relais?'relais,':'';
$stunnelItalie = $this->tunnelItalie?'tunnelItalie,':'';
$sferryShuttle = $this->ferryShuttle?'ferryShuttle,':'';
$staxeAllemande = $this->taxeAllemande?'taxeAllemande,':'';
return $speages.$sparkingsCheckpoint.$shebergementConducteur.$spensionConducteur.$srelais.$stunnelItalie.$sferryShuttle.$staxeAllemande;
}
public function getId(): ?int
{
return $this->id;
}
public function isPeages(): ?bool
{
return $this->peages;
}
public function setPeages(?bool $peages): void
{
$this->peages = $peages;
}
public function isParkingsCheckpoint(): ?bool
{
return $this->parkingsCheckpoint;
}
public function setParkingsCheckpoint(?bool $parkingsCheckpoint): void
{
$this->parkingsCheckpoint = $parkingsCheckpoint;
}
public function isHebergementConducteur(): ?bool
{
return $this->hebergementConducteur;
}
public function setHebergementConducteur(?bool $hebergementConducteur): void
{
$this->hebergementConducteur = $hebergementConducteur;
}
public function isPensionConducteur(): ?bool
{
return $this->pensionConducteur;
}
public function setPensionConducteur(?bool $pensionConducteur): void
{
$this->pensionConducteur = $pensionConducteur;
}
public function isRelais(): ?bool
{
return $this->relais;
}
public function setRelais(?bool $relais): void
{
$this->relais = $relais;
}
public function isTunnelItalie(): ?bool
{
return $this->tunnelItalie;
}
public function setTunnelItalie(?bool $tunnelItalie): void
{
$this->tunnelItalie = $tunnelItalie;
}
public function isFerryShuttle(): ?bool
{
return $this->ferryShuttle;
}
public function setFerryShuttle(?bool $ferryShuttle): void
{
$this->ferryShuttle = $ferryShuttle;
}
public function isTaxeAllemande(): ?bool
{
return $this->taxeAllemande;
}
public function setTaxeAllemande(?bool $taxeAllemande): void
{
$this->taxeAllemande = $taxeAllemande;
}
}