src/Entity/LContract.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LContractRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassLContractRepository::class)]
  9. class LContract
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\ManyToOne]
  16.     private ?Pemploye $employe null;
  17.     #[ORM\Column(length50,  nullable:true )]
  18.     private ?string $code null;
  19.     #[ORM\Column(typeTypes::DATE_MUTABLE,  nullable:true )]
  20.     private ?\DateTimeInterface $date_debut null;
  21.     #[ORM\Column(typeTypes::DATE_MUTABLE,  nullable:true )]
  22.     private ?\DateTimeInterface $date_fin null;
  23.     #[ORM\Column(nullable:true)]
  24.     private ?int $active 1;
  25.     #[ORM\Column(typeTypes::DATE_MUTABLE,  nullable:true )]
  26.     private ?\DateTimeInterface $date_sortie null;
  27.     #[ORM\Column(length50,  nullable:true )]
  28.     private ?string $motif_sortie null;
  29.     #[ORM\Column(typeTypes::DATE_MUTABLE,  nullable:true )]
  30.     private ?\DateTimeInterface $dateAnciennete null;
  31.     #[ORM\ManyToOne(inversedBy'contract_id' )]
  32.     private ?PnatureContract $pnatureContract null;
  33.     #[ORM\OneToMany(mappedBy'contract_id'targetEntityLcontractFonction::class )]
  34.     private Collection $lcontractFonctions;
  35.     #[ORM\OneToMany(mappedBy'contract_id'targetEntityLdossierContract::class )]
  36.     private Collection $ldossierContracts;
  37.     #[ORM\OneToMany(mappedBy'contract_id'targetEntityLmatriculationCoti::class )]
  38.     private Collection $lmatriculationCotis;
  39.     #[ORM\OneToMany(mappedBy'contact_id'targetEntityLrib::class )]
  40.     private Collection $lribs;
  41.     #[ORM\OneToMany(mappedBy'contract_id'targetEntityLmatriculationcoti::class )]
  42.     private Collection $lmatriculationcotis;
  43.     #[ORM\OneToMany(mappedBy'contract'targetEntityLelementFixe::class)]
  44.     private Collection $elementFixes;
  45.     #[ORM\ManyToOne(inversedBy'contracts')]
  46.     private ?PDossier $dossier null;
  47.     #[ORM\ManyToOne(inversedBy'contracts')]
  48.     private ?Pbareme $bareme null;
  49.     #[ORM\OneToMany(mappedBy'contract'targetEntityPArretTravail::class)]
  50.     private Collection $arretTravails;
  51.     #[ORM\OneToMany(mappedBy'contract'targetEntityLElementEcheance::class)]
  52.     private Collection $elementEcheances;
  53.     #[ORM\Column(nullabletrue)]
  54.     private ?int $priseEnCharge 0;
  55.     #[ORM\OneToMany(mappedBy'contract'targetEntityPPrelevement::class)]
  56.     private Collection $prelevements;
  57.     #[ORM\OneToMany(mappedBy'contract'targetEntityTbulletin::class)]
  58.     private Collection $bulletins;
  59.     #[ORM\OneToMany(mappedBy'contract'targetEntityProbleme::class)]
  60.     private Collection $problemes;
  61.     #[ORM\ManyToOne(inversedBy'lContracts')]
  62.     private ?Pfonction $fonction null;
  63.     #[ORM\Column(length255nullabletrue)]
  64.     private ?string $Salairegrille null;
  65.     #[ORM\Column(length255nullabletrue)]
  66.     private ?string $Salaireaffecte null;
  67.     #[ORM\OneToMany(mappedBy'LContract'targetEntityTCnssA02::class)]
  68.     private Collection $tCnssA02s;
  69.     #[ORM\OneToMany(mappedBy'contract'targetEntityTCnssB02::class)]
  70.     private Collection $tCnssB02s;
  71.     #[ORM\OneToMany(mappedBy'contract'targetEntityTCnssB04::class)]
  72.     private Collection $tCnssB04s;
  73.     #[ORM\ManyToOne]
  74.     private ?PPiece $piece null;
  75.     #[ORM\Column(nullabletrue)]
  76.     private ?float $PPC null;
  77.     #[ORM\Column(nullabletrue)]
  78.     private ?float $RPC null;
  79.     #[ORM\Column(length70nullabletrue)]
  80.     private ?string $matriculeAncien null;
  81.     #[ORM\OneToMany(mappedBy'contract'targetEntityHonoraireDetFixe::class)]
  82.     private Collection $honoraireDetFixes;
  83.     #[ORM\ManyToOne]
  84.     private ?Users $userDesactiver null;
  85.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  86.     private ?\DateTimeInterface $dateDesactiver null;
  87.     #[ORM\Column(length255nullabletrue)]
  88.     private ?string $cnss null;
  89.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  90.     private ?\DateTimeInterface $dateCnss null;
  91.     #[ORM\Column(length255nullabletrue)]
  92.     private ?string $cimr null;
  93.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  94.     private ?\DateTimeInterface $dateCimr null;
  95.     #[ORM\ManyToOne]
  96.     private ?PdureeContract $dureeContract null;
  97.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  98.     private ?\DateTimeInterface $created null;
  99.     #[ORM\ManyToOne]
  100.     private ?Users $userUpdated null;
  101.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  102.     private ?\DateTimeInterface $updated null;
  103.     #[ORM\ManyToOne]
  104.     #[ORM\JoinColumn(nullabletrue)]
  105.     private ?Users $userCreated null;
  106.     #[ORM\Column(length255nullabletrue)]
  107.     private ?string $carteAutoEntrepreneur null;
  108.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  109.     private ?\DateTimeInterface $dateDebutCarteEntrepreneur null;
  110.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  111.     private ?\DateTimeInterface $dateFinCarteEntrepreneur null;
  112.     #[ORM\Column(nullabletrue)]
  113.     private ?bool $stagiaire null;
  114.     public function __construct()
  115.     {
  116.         $this->lcontractFonctions = new ArrayCollection();
  117.         $this->ldossierContracts = new ArrayCollection();
  118.         $this->lmatriculationCotis = new ArrayCollection();
  119.         $this->lribs = new ArrayCollection();
  120.         $this->lmatriculationcotis = new ArrayCollection();
  121.         $this->elementFixes = new ArrayCollection();
  122.         $this->arretTravails = new ArrayCollection();
  123.         $this->elementEcheances = new ArrayCollection();
  124.         $this->prelevements = new ArrayCollection();
  125.         $this->bulletins = new ArrayCollection();
  126.         $this->problemes = new ArrayCollection();
  127.         $this->tCnssA02s = new ArrayCollection();
  128.         $this->tCnssB02s = new ArrayCollection();
  129.         $this->tCnssB04s = new ArrayCollection();
  130.         $this->honoraireDetFixes = new ArrayCollection();
  131.     }
  132.     public function getId(): ?int
  133.     {
  134.         return $this->id;
  135.     }
  136.     public function getEmploye(): ?Pemploye
  137.     {
  138.         return $this->employe;
  139.     }
  140.     public function setEmploye(?Pemploye $employe): self
  141.     {
  142.         $this->employe $employe;
  143.         return $this;
  144.     }
  145.     
  146.     public function getCode(): ?string
  147.     {
  148.         return $this->code;
  149.     }
  150.     public function setCode(string $code): self
  151.     {
  152.         $this->code $code;
  153.         return $this;
  154.     }
  155.     public function getDateDebut(): ?\DateTimeInterface
  156.     {
  157.         return $this->date_debut;
  158.     }
  159.     public function setDateDebut(\DateTimeInterface $date_debut): self
  160.     {
  161.         $this->date_debut $date_debut;
  162.         return $this;
  163.     }
  164.     public function getDateFin(): ?\DateTimeInterface
  165.     {
  166.         return $this->date_fin;
  167.     }
  168.     public function setDateFin(\DateTimeInterface $date_fin): self
  169.     {
  170.         $this->date_fin $date_fin;
  171.         return $this;
  172.     }
  173.     public function getActive(): ?int
  174.     {
  175.         return $this->active;
  176.     }
  177.     public function setActive(int $active): self
  178.     {
  179.         $this->active $active;
  180.         return $this;
  181.     }
  182.     public function getDateSortie(): ?\DateTimeInterface
  183.     {
  184.         return $this->date_sortie;
  185.     }
  186.     public function setDateSortie(\DateTimeInterface $date_sortie): self
  187.     {
  188.         $this->date_sortie $date_sortie;
  189.         return $this;
  190.     }
  191.     public function getMotifSortie(): ?string
  192.     {
  193.         return $this->motif_sortie;
  194.     }
  195.     public function setMotifSortie(string $motif_sortie): self
  196.     {
  197.         $this->motif_sortie $motif_sortie;
  198.         return $this;
  199.     }
  200.     public function getDateAnciennete(): ?\DateTimeInterface
  201.     {
  202.         return $this->dateAnciennete;
  203.     }
  204.     public function setDateAnciennte(\DateTimeInterface $dateAnciennete): self
  205.     {
  206.         $this->dateAnciennete $dateAnciennete;
  207.         return $this;
  208.     }
  209.     public function getPnatureContract(): ?PnatureContract
  210.     {
  211.         return $this->pnatureContract;
  212.     }
  213.     public function setPnatureContract(?PnatureContract $pnatureContract): self
  214.     {
  215.         $this->pnatureContract $pnatureContract;
  216.         return $this;
  217.     }
  218.     /**
  219.      * @return Collection<int, LcontractFonction>
  220.      */
  221.     public function getLcontractFonctions(): Collection
  222.     {
  223.         return $this->lcontractFonctions;
  224.     }
  225.     public function addLcontractFonction(LcontractFonction $lcontractFonction): self
  226.     {
  227.         if (!$this->lcontractFonctions->contains($lcontractFonction)) {
  228.             $this->lcontractFonctions->add($lcontractFonction);
  229.             $lcontractFonction->setContractId($this);
  230.         }
  231.         return $this;
  232.     }
  233.     public function removeLcontractFonction(LcontractFonction $lcontractFonction): self
  234.     {
  235.         if ($this->lcontractFonctions->removeElement($lcontractFonction)) {
  236.             // set the owning side to null (unless already changed)
  237.             if ($lcontractFonction->getContractId() === $this) {
  238.                 $lcontractFonction->setContractId(null);
  239.             }
  240.         }
  241.         return $this;
  242.     }
  243.     /**
  244.      * @return Collection<int, LdossierContract>
  245.      */
  246.     public function getLdossierContracts(): Collection
  247.     {
  248.         return $this->ldossierContracts;
  249.     }
  250.     public function addLdossierContract(LdossierContract $ldossierContract): self
  251.     {
  252.         if (!$this->ldossierContracts->contains($ldossierContract)) {
  253.             $this->ldossierContracts->add($ldossierContract);
  254.             $ldossierContract->setContractId($this);
  255.         }
  256.         return $this;
  257.     }
  258.     public function removeLdossierContract(LdossierContract $ldossierContract): self
  259.     {
  260.         if ($this->ldossierContracts->removeElement($ldossierContract)) {
  261.             // set the owning side to null (unless already changed)
  262.             if ($ldossierContract->getContractId() === $this) {
  263.                 $ldossierContract->setContractId(null);
  264.             }
  265.         }
  266.         return $this;
  267.     }
  268.     /**
  269.      * @return Collection<int, LmatriculationCotis>
  270.      */
  271.     public function getLmatriculationCotis(): Collection
  272.     {
  273.         return $this->lmatriculationCotis;
  274.     }
  275.     public function addLmatriculationCoti(LmatriculationCoti $lmatriculationCoti): self
  276.     {
  277.         if (!$this->lmatriculationCotis->contains($lmatriculationCoti)) {
  278.             $this->lmatriculationCotis->add($lmatriculationCoti);
  279.             $lmatriculationCoti->setContractId($this);
  280.         }
  281.         return $this;
  282.     }
  283.     public function removeLmatriculationCoti(LmatriculationCoti $lmatriculationCoti): self
  284.     {
  285.         if ($this->lmatriculationCotis->removeElement($lmatriculationCoti)) {
  286.             // set the owning side to null (unless already changed)
  287.             if ($lmatriculationCoti->getContractId() === $this) {
  288.                 $lmatriculationCoti->setContractId(null);
  289.             }
  290.         }
  291.         return $this;
  292.     }
  293.     /**
  294.      * @return Collection<int, Lrib>
  295.      */
  296.     public function getLribs(): Collection
  297.     {
  298.         return $this->lribs;
  299.     }
  300.     public function addLrib(Lrib $lrib): self
  301.     {
  302.         if (!$this->lribs->contains($lrib)) {
  303.             $this->lribs->add($lrib);
  304.             $lrib->setContactId($this);
  305.         }
  306.         return $this;
  307.     }
  308.     public function removeLrib(Lrib $lrib): self
  309.     {
  310.         if ($this->lribs->removeElement($lrib)) {
  311.             // set the owning side to null (unless already changed)
  312.             if ($lrib->getContactId() === $this) {
  313.                 $lrib->setContactId(null);
  314.             }
  315.         }
  316.         return $this;
  317.     }
  318.    
  319.     /**
  320.      * @return Collection<int, LelementFixe>
  321.      */
  322.     public function getElementFixes(): Collection
  323.     {
  324.         return $this->elementFixes;
  325.     }
  326.     public function getActiveElementFixes()
  327.     {
  328.         $array = [];
  329.         foreach($this->elementFixes as $elementFix) {
  330.             if($elementFix->isActive()) {
  331.                 array_push($array$elementFix);
  332.             }
  333.         }
  334.         return $array;
  335.     }
  336.     public function addElementFix(LelementFixe $elementFix): self
  337.     {
  338.         if (!$this->elementFixes->contains($elementFix)) {
  339.             $this->elementFixes->add($elementFix);
  340.             $elementFix->setContract($this);
  341.         }
  342.         return $this;
  343.     }
  344.     public function removeElementFix(LelementFixe $elementFix): self
  345.     {
  346.         if ($this->elementFixes->removeElement($elementFix)) {
  347.             // set the owning side to null (unless already changed)
  348.             if ($elementFix->getContract() === $this) {
  349.                 $elementFix->setContract(null);
  350.             }
  351.         }
  352.         return $this;
  353.     }
  354.     public function getDossier(): ?PDossier
  355.     {
  356.         return $this->dossier;
  357.     }
  358.     public function setDossier(?PDossier $dossier): self
  359.     {
  360.         $this->dossier $dossier;
  361.         return $this;
  362.     }
  363.     public function getBareme(): ?Pbareme
  364.     {
  365.         return $this->bareme;
  366.     }
  367.     public function setBareme(?Pbareme $bareme): self
  368.     {
  369.         $this->bareme $bareme;
  370.         return $this;
  371.     }
  372.     /**
  373.      * @return Collection<int, PArretTravail>
  374.      */
  375.     public function getArretTravails(): Collection
  376.     {
  377.         return $this->arretTravails;
  378.     }
  379.     public function addArretTravail(PArretTravail $arretTravail): self
  380.     {
  381.         if (!$this->arretTravails->contains($arretTravail)) {
  382.             $this->arretTravails->add($arretTravail);
  383.             $arretTravail->setContract($this);
  384.         }
  385.         return $this;
  386.     }
  387.     public function removeArretTravail(PArretTravail $arretTravail): self
  388.     {
  389.         if ($this->arretTravails->removeElement($arretTravail)) {
  390.             // set the owning side to null (unless already changed)
  391.             if ($arretTravail->getContract() === $this) {
  392.                 $arretTravail->setContract(null);
  393.             }
  394.         }
  395.         return $this;
  396.     }
  397.     /**
  398.      * @return Collection<int, LElementEcheance>
  399.      */
  400.     public function getElementEcheances(): Collection
  401.     {
  402.         return $this->elementEcheances;
  403.     }
  404.     public function addElementEcheance(LElementEcheance $elementEcheance): self
  405.     {
  406.         if (!$this->elementEcheances->contains($elementEcheance)) {
  407.             $this->elementEcheances->add($elementEcheance);
  408.             $elementEcheance->setContract($this);
  409.         }
  410.         return $this;
  411.     }
  412.     public function removeElementEcheance(LElementEcheance $elementEcheance): self
  413.     {
  414.         if ($this->elementEcheances->removeElement($elementEcheance)) {
  415.             // set the owning side to null (unless already changed)
  416.             if ($elementEcheance->getContract() === $this) {
  417.                 $elementEcheance->setContract(null);
  418.             }
  419.         }
  420.         return $this;
  421.     }
  422.     public function getPriseEnCharge(): ?int
  423.     {
  424.         return $this->priseEnCharge;
  425.     }
  426.     public function setPriseEnCharge(?int $priseEnCharge): self
  427.     {
  428.         $this->priseEnCharge $priseEnCharge;
  429.         return $this;
  430.     }
  431.     /**
  432.      * @return Collection<int, PPrelevement>
  433.      */
  434.     public function getPrelevements(): Collection
  435.     {
  436.         return $this->prelevements;
  437.     }
  438.     public function addPrelevement(PPrelevement $prelevement): self
  439.     {
  440.         if (!$this->prelevements->contains($prelevement)) {
  441.             $this->prelevements->add($prelevement);
  442.             $prelevement->setContract($this);
  443.         }
  444.         return $this;
  445.     }
  446.     public function removePrelevement(PPrelevement $prelevement): self
  447.     {
  448.         if ($this->prelevements->removeElement($prelevement)) {
  449.             // set the owning side to null (unless already changed)
  450.             if ($prelevement->getContract() === $this) {
  451.                 $prelevement->setContract(null);
  452.             }
  453.         }
  454.         return $this;
  455.     }
  456.     /**
  457.      * @return Collection<int, Tbulletin>
  458.      */
  459.     public function getBulletins(): Collection
  460.     {
  461.         return $this->bulletins;
  462.     }
  463.     public function addBulletin(Tbulletin $bulletin): self
  464.     {
  465.         if (!$this->bulletins->contains($bulletin)) {
  466.             $this->bulletins->add($bulletin);
  467.             $bulletin->setContract($this);
  468.         }
  469.         return $this;
  470.     }
  471.     public function removeBulletin(Tbulletin $bulletin): self
  472.     {
  473.         if ($this->bulletins->removeElement($bulletin)) {
  474.             // set the owning side to null (unless already changed)
  475.             if ($bulletin->getContract() === $this) {
  476.                 $bulletin->setContract(null);
  477.             }
  478.         }
  479.         return $this;
  480.     }
  481.     /**
  482.      * @return Collection<int, Probleme>
  483.      */
  484.     public function getProblemes(): Collection
  485.     {
  486.         return $this->problemes;
  487.     }
  488.     public function addProbleme(Probleme $probleme): self
  489.     {
  490.         if (!$this->problemes->contains($probleme)) {
  491.             $this->problemes->add($probleme);
  492.             $probleme->setContract($this);
  493.         }
  494.         return $this;
  495.     }
  496.     public function removeProbleme(Probleme $probleme): self
  497.     {
  498.         if ($this->problemes->removeElement($probleme)) {
  499.             // set the owning side to null (unless already changed)
  500.             if ($probleme->getContract() === $this) {
  501.                 $probleme->setContract(null);
  502.             }
  503.         }
  504.         return $this;
  505.     }
  506.     public function getfonction(): ?Pfonction
  507.     {
  508.         return $this->fonction;
  509.     }
  510.     public function setfonction(?Pfonction $fonction): static
  511.     {
  512.         $this->fonction $fonction;
  513.         return $this;
  514.     }
  515.     public function getSalairegrille(): ?string
  516.     {
  517.         return $this->Salairegrille;
  518.     }
  519.     public function setSalairegrille(?string $Salairegrille): static
  520.     {
  521.         $this->Salairegrille $Salairegrille;
  522.         return $this;
  523.     }
  524.     public function getSalaireaffecte(): ?string
  525.     {
  526.         return $this->Salaireaffecte;
  527.     }
  528.     public function setSalaireaffecte(?string $Salaireaffecte): static
  529.     {
  530.         $this->Salaireaffecte $Salaireaffecte;
  531.         return $this;
  532.     }
  533.     /**
  534.      * @return Collection<int, TCnssA02>
  535.      */
  536.     public function getTCnssA02s(): Collection
  537.     {
  538.         return $this->tCnssA02s;
  539.     }
  540.     public function getPiece(): ?PPiece
  541.     {
  542.         return $this->piece;
  543.     }
  544.     public function setPiece(?PPiece $piece): static
  545.     {
  546.         $this->piece $piece;
  547.         return $this;
  548.     }
  549.     public function getPPC(): ?float
  550.     {
  551.         return $this->PPC;
  552.     }
  553.     public function setPPC(?float $PPC): static
  554.     {
  555.         $this->PPC $PPC;
  556.         return $this;
  557.     }
  558.     /**
  559.      * @return Collection<int, TCnssB02>
  560.      */
  561.     public function getTCnssB02s(): Collection
  562.     {
  563.         return $this->tCnssB02s;
  564.     }
  565.     /**
  566.      * @return Collection<int, TCnssB04>
  567.      */
  568.     public function getTCnssB04s(): Collection
  569.     {
  570.         return $this->tCnssB04s;
  571.     }
  572.    
  573.     public function getRPC(): ?float
  574.     {
  575.         return $this->RPC;
  576.     }
  577.     public function setRPC(?float $RPC): static
  578.     {
  579.         $this->RPC $RPC;
  580.         return $this;
  581.     }
  582.     public function getMatriculeAncien(): ?string
  583.     {
  584.         return $this->matriculeAncien;
  585.     }
  586.     public function setMatriculeAncien(?string $matriculeAncien): static
  587.     {
  588.         $this->matriculeAncien $matriculeAncien;
  589.         return $this;
  590.     }
  591.     /**
  592.      * @return Collection<int, HonoraireDetFixe>
  593.      */
  594.     public function getHonoraireDetFixes(): Collection
  595.     {
  596.         return $this->honoraireDetFixes;
  597.     }
  598.     public function addHonoraireDetFix(HonoraireDetFixe $honoraireDetFix): static
  599.     {
  600.         if (!$this->honoraireDetFixes->contains($honoraireDetFix)) {
  601.             $this->honoraireDetFixes->add($honoraireDetFix);
  602.             $honoraireDetFix->setContract($this);
  603.         }
  604.         return $this;
  605.     }
  606.     public function removeHonoraireDetFix(HonoraireDetFixe $honoraireDetFix): static
  607.     {
  608.         if ($this->honoraireDetFixes->removeElement($honoraireDetFix)) {
  609.             // set the owning side to null (unless already changed)
  610.             if ($honoraireDetFix->getContract() === $this) {
  611.                 $honoraireDetFix->setContract(null);
  612.             }
  613.         }
  614.         return $this;
  615.     }
  616.     public function getUserDesactiver(): ?Users
  617.     {
  618.         return $this->userDesactiver;
  619.     }
  620.     public function setUserDesactiver(?Users $userDesactiver): static
  621.     {
  622.         $this->userDesactiver $userDesactiver;
  623.         return $this;
  624.     }
  625.     public function getDateDesactiver(): ?\DateTimeInterface
  626.     {
  627.         return $this->dateDesactiver;
  628.     }
  629.     public function setDateDesactiver(?\DateTimeInterface $dateDesactiver): static
  630.     {
  631.         $this->dateDesactiver $dateDesactiver;
  632.         return $this;
  633.     }
  634.     public function getCnss(): ?string
  635.     {
  636.         return $this->cnss;
  637.     }
  638.     public function setCnss(?string $cnss): static
  639.     {
  640.         $this->cnss $cnss;
  641.         return $this;
  642.     }
  643.     public function getDateCnss(): ?\DateTimeInterface
  644.     {
  645.         return $this->dateCnss;
  646.     }
  647.     public function setDateCnss(?\DateTimeInterface $dateCnss): static
  648.     {
  649.         $this->dateCnss $dateCnss;
  650.         return $this;
  651.     }
  652.     public function getCimr(): ?string
  653.     {
  654.         return $this->cimr;
  655.     }
  656.     public function setCimr(?string $cimr): static
  657.     {
  658.         $this->cimr $cimr;
  659.         return $this;
  660.     }
  661.     public function getDateCimr(): ?\DateTimeInterface
  662.     {
  663.         return $this->dateCimr;
  664.     }
  665.     public function setDateCimr(?\DateTimeInterface $dateCimr): static
  666.     {
  667.         $this->dateCimr $dateCimr;
  668.         return $this;
  669.     }
  670.     public function getDureeContract(): ?PdureeContract
  671.     {
  672.         return $this->dureeContract;
  673.     }
  674.     public function setDureeContract(?PdureeContract $dureeContract): static
  675.     {
  676.         $this->dureeContract $dureeContract;
  677.         return $this;
  678.     }
  679.     public function getCreated(): ?\DateTimeInterface
  680.     {
  681.         return $this->created;
  682.     }
  683.     public function setCreated(?\DateTimeInterface $created): static
  684.     {
  685.         $this->created $created;
  686.         return $this;
  687.     }
  688.     public function getUserUpdated(): ?Users
  689.     {
  690.         return $this->userUpdated;
  691.     }
  692.     public function setUserUpdated(?Users $userUpdated): static
  693.     {
  694.         $this->userUpdated $userUpdated;
  695.         return $this;
  696.     }
  697.     public function getUpdated(): ?\DateTimeInterface
  698.     {
  699.         return $this->updated;
  700.     }
  701.     public function setUpdated(?\DateTimeInterface $updated): static
  702.     {
  703.         $this->updated $updated;
  704.         return $this;
  705.     }
  706.     public function getUserCreated(): ?Users
  707.     {
  708.         return $this->userCreated;
  709.     }
  710.     public function setUserCreated(?Users $userCreated): static
  711.     {
  712.         $this->userCreated $userCreated;
  713.         return $this;
  714.     }
  715.     public function getCarteAutoEntrepreneur(): ?string
  716.     {
  717.         return $this->carteAutoEntrepreneur;
  718.     }
  719.     public function setCarteAutoEntrepreneur(?string $carteAutoEntrepreneur): static
  720.     {
  721.         $this->carteAutoEntrepreneur $carteAutoEntrepreneur;
  722.         return $this;
  723.     }
  724.     public function getDateDebutCarteEntrepreneur(): ?\DateTimeInterface
  725.     {
  726.         return $this->dateDebutCarteEntrepreneur;
  727.     }
  728.     public function setDateDebutCarteEntrepreneur(?\DateTimeInterface $dateDebutCarteEntrepreneur): static
  729.     {
  730.         $this->dateDebutCarteEntrepreneur $dateDebutCarteEntrepreneur;
  731.         return $this;
  732.     }
  733.     public function getDateFinCarteEntrepreneur(): ?\DateTimeInterface
  734.     {
  735.         return $this->dateFinCarteEntrepreneur;
  736.     }
  737.     public function setDateFinCarteEntrepreneur(?\DateTimeInterface $dateFinCarteEntrepreneur): static
  738.     {
  739.         $this->dateFinCarteEntrepreneur $dateFinCarteEntrepreneur;
  740.         return $this;
  741.     }
  742.     public function isStagiaire(): ?bool
  743.     {
  744.         return $this->stagiaire;
  745.     }
  746.     public function setStagiaire(?bool $stagiaire): static
  747.     {
  748.         $this->stagiaire $stagiaire;
  749.         return $this;
  750.     }
  751.     
  752. }