Complex classes like Intervenants often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Intervenants, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
22 | class Intervenants { |
||
23 | |||
24 | /** |
||
25 | * Adresse site client. |
||
26 | * |
||
27 | * @var string|null |
||
28 | */ |
||
29 | private $adresseSiteClient; |
||
30 | |||
31 | /** |
||
32 | * Adresse transpac. |
||
33 | * |
||
34 | * @var string|null |
||
35 | */ |
||
36 | private $adresseTranspac; |
||
37 | |||
38 | /** |
||
39 | * Age. |
||
40 | * |
||
41 | * @var string|null |
||
42 | */ |
||
43 | private $age; |
||
44 | |||
45 | /** |
||
46 | * Autoriser acces internet. |
||
47 | * |
||
48 | * @var bool|null |
||
49 | */ |
||
50 | private $autoriserAccesInternet; |
||
51 | |||
52 | /** |
||
53 | * Bic. |
||
54 | * |
||
55 | * @var string|null |
||
56 | */ |
||
57 | private $bic; |
||
58 | |||
59 | /** |
||
60 | * Btq. |
||
61 | * |
||
62 | * @var string|null |
||
63 | */ |
||
64 | private $btq; |
||
65 | |||
66 | /** |
||
67 | * Btq2. |
||
68 | * |
||
69 | * @var string|null |
||
70 | */ |
||
71 | private $btq2; |
||
72 | |||
73 | /** |
||
74 | * Bureau distributeur. |
||
75 | * |
||
76 | * @var string|null |
||
77 | */ |
||
78 | private $bureauDistributeur; |
||
79 | |||
80 | /** |
||
81 | * Bureau distributeur2. |
||
82 | * |
||
83 | * @var string|null |
||
84 | */ |
||
85 | private $bureauDistributeur2; |
||
86 | |||
87 | /** |
||
88 | * Capital. |
||
89 | * |
||
90 | * @var float|null |
||
91 | */ |
||
92 | private $capital; |
||
93 | |||
94 | /** |
||
95 | * Capital monnaie. |
||
96 | * |
||
97 | * @var string|null |
||
98 | */ |
||
99 | private $capitalMonnaie; |
||
100 | |||
101 | /** |
||
102 | * Categorie juridique. |
||
103 | * |
||
104 | * @var string|null |
||
105 | */ |
||
106 | private $categorieJuridique; |
||
107 | |||
108 | /** |
||
109 | * Civilite. |
||
110 | * |
||
111 | * @var string|null |
||
112 | */ |
||
113 | private $civilite; |
||
114 | |||
115 | /** |
||
116 | * Code. |
||
117 | * |
||
118 | * @var string|null |
||
119 | */ |
||
120 | private $code; |
||
121 | |||
122 | /** |
||
123 | * Code epoux. |
||
124 | * |
||
125 | * @var string|null |
||
126 | */ |
||
127 | private $codeEpoux; |
||
128 | |||
129 | /** |
||
130 | * Code insee. |
||
131 | * |
||
132 | * @var string|null |
||
133 | */ |
||
134 | private $codeInsee; |
||
135 | |||
136 | /** |
||
137 | * Code naf. |
||
138 | * |
||
139 | * @var string|null |
||
140 | */ |
||
141 | private $codeNaf; |
||
142 | |||
143 | /** |
||
144 | * Code naf2008. |
||
145 | * |
||
146 | * @var string|null |
||
147 | */ |
||
148 | private $codeNaf2008; |
||
149 | |||
150 | /** |
||
151 | * Code officiel commune. |
||
152 | * |
||
153 | * @var string|null |
||
154 | */ |
||
155 | private $codeOfficielCommune; |
||
156 | |||
157 | /** |
||
158 | * Code officiel commune2. |
||
159 | * |
||
160 | * @var string|null |
||
161 | */ |
||
162 | private $codeOfficielCommune2; |
||
163 | |||
164 | /** |
||
165 | * Code pays iso. |
||
166 | * |
||
167 | * @var string|null |
||
168 | */ |
||
169 | private $codePaysIso; |
||
170 | |||
171 | /** |
||
172 | * Code pays iso naiss. |
||
173 | * |
||
174 | * @var string|null |
||
175 | */ |
||
176 | private $codePaysIsoNaiss; |
||
177 | |||
178 | /** |
||
179 | * Code postal. |
||
180 | * |
||
181 | * @var string|null |
||
182 | */ |
||
183 | private $codePostal; |
||
184 | |||
185 | /** |
||
186 | * Code postal2. |
||
187 | * |
||
188 | * @var string|null |
||
189 | */ |
||
190 | private $codePostal2; |
||
191 | |||
192 | /** |
||
193 | * Code postal mariage. |
||
194 | * |
||
195 | * @var string|null |
||
196 | */ |
||
197 | private $codePostalMariage; |
||
198 | |||
199 | /** |
||
200 | * Code postal naissance. |
||
201 | * |
||
202 | * @var string|null |
||
203 | */ |
||
204 | private $codePostalNaissance; |
||
205 | |||
206 | /** |
||
207 | * Code postal rc. |
||
208 | * |
||
209 | * @var string|null |
||
210 | */ |
||
211 | private $codePostalRc; |
||
212 | |||
213 | /** |
||
214 | * Code postal rm. |
||
215 | * |
||
216 | * @var string|null |
||
217 | */ |
||
218 | private $codePostalRm; |
||
219 | |||
220 | /** |
||
221 | * Code responsable. |
||
222 | * |
||
223 | * @var string|null |
||
224 | */ |
||
225 | private $codeResponsable; |
||
226 | |||
227 | /** |
||
228 | * Complement. |
||
229 | * |
||
230 | * @var string|null |
||
231 | */ |
||
232 | private $complement; |
||
233 | |||
234 | /** |
||
235 | * Complement2. |
||
236 | * |
||
237 | * @var string|null |
||
238 | */ |
||
239 | private $complement2; |
||
240 | |||
241 | /** |
||
242 | * Complement suite. |
||
243 | * |
||
244 | * @var string|null |
||
245 | */ |
||
246 | private $complementSuite; |
||
247 | |||
248 | /** |
||
249 | * Compteur liens. |
||
250 | * |
||
251 | * @var int|null |
||
252 | */ |
||
253 | private $compteurLiens; |
||
254 | |||
255 | /** |
||
256 | * Contact. |
||
257 | * |
||
258 | * @var string|null |
||
259 | */ |
||
260 | private $contact; |
||
261 | |||
262 | /** |
||
263 | * Creation societe. |
||
264 | * |
||
265 | * @var DateTime|null |
||
266 | */ |
||
267 | private $creationSociete; |
||
268 | |||
269 | /** |
||
270 | * Date creat. |
||
271 | * |
||
272 | * @var DateTime|null |
||
273 | */ |
||
274 | private $dateCreat; |
||
275 | |||
276 | /** |
||
277 | * Date deb activite. |
||
278 | * |
||
279 | * @var DateTime|null |
||
280 | */ |
||
281 | private $dateDebActivite; |
||
282 | |||
283 | /** |
||
284 | * Date divorce. |
||
285 | * |
||
286 | * @var DateTime|null |
||
287 | */ |
||
288 | private $dateDivorce; |
||
289 | |||
290 | /** |
||
291 | * Date installation. |
||
292 | * |
||
293 | * @var DateTime|null |
||
294 | */ |
||
295 | private $dateInstallation; |
||
296 | |||
297 | /** |
||
298 | * Date mariage. |
||
299 | * |
||
300 | * @var DateTime|null |
||
301 | */ |
||
302 | private $dateMariage; |
||
303 | |||
304 | /** |
||
305 | * Date modif. |
||
306 | * |
||
307 | * @var DateTime|null |
||
308 | */ |
||
309 | private $dateModif; |
||
310 | |||
311 | /** |
||
312 | * Date naissance. |
||
313 | * |
||
314 | * @var DateTime|null |
||
315 | */ |
||
316 | private $dateNaissance; |
||
317 | |||
318 | /** |
||
319 | * Donnees appel. |
||
320 | * |
||
321 | * @var string|null |
||
322 | */ |
||
323 | private $donneesAppel; |
||
324 | |||
325 | /** |
||
326 | * Droit collab visu documents. |
||
327 | * |
||
328 | * @var string|null |
||
329 | */ |
||
330 | private $droitCollabVisuDocuments; |
||
331 | |||
332 | /** |
||
333 | * Duree societe. |
||
334 | * |
||
335 | * @var string|null |
||
336 | */ |
||
337 | private $dureeSociete; |
||
338 | |||
339 | /** |
||
340 | * Email. |
||
341 | * |
||
342 | * @var string|null |
||
343 | */ |
||
344 | private $email; |
||
345 | |||
346 | /** |
||
347 | * Email2. |
||
348 | * |
||
349 | * @var string|null |
||
350 | */ |
||
351 | private $email2; |
||
352 | |||
353 | /** |
||
354 | * Enseigne. |
||
355 | * |
||
356 | * @var string|null |
||
357 | */ |
||
358 | private $enseigne; |
||
359 | |||
360 | /** |
||
361 | * Fax. |
||
362 | * |
||
363 | * @var string|null |
||
364 | */ |
||
365 | private $fax; |
||
366 | |||
367 | /** |
||
368 | * Fax2. |
||
369 | * |
||
370 | * @var string|null |
||
371 | */ |
||
372 | private $fax2; |
||
373 | |||
374 | /** |
||
375 | * Frp cle. |
||
376 | * |
||
377 | * @var string|null |
||
378 | */ |
||
379 | private $frpCle; |
||
380 | |||
381 | /** |
||
382 | * Frp dossier. |
||
383 | * |
||
384 | * @var string|null |
||
385 | */ |
||
386 | private $frpDossier; |
||
387 | |||
388 | /** |
||
389 | * Frp recette. |
||
390 | * |
||
391 | * @var string|null |
||
392 | */ |
||
393 | private $frpRecette; |
||
394 | |||
395 | /** |
||
396 | * Gest juri. |
||
397 | * |
||
398 | * @var bool|null |
||
399 | */ |
||
400 | private $gestJuri; |
||
401 | |||
402 | /** |
||
403 | * Iban. |
||
404 | * |
||
405 | * @var string|null |
||
406 | */ |
||
407 | private $iban; |
||
408 | |||
409 | /** |
||
410 | * Ident tva. |
||
411 | * |
||
412 | * @var string|null |
||
413 | */ |
||
414 | private $identTva; |
||
415 | |||
416 | /** |
||
417 | * Identifiant. |
||
418 | * |
||
419 | * @var string|null |
||
420 | */ |
||
421 | private $identifiant; |
||
422 | |||
423 | /** |
||
424 | * Identifiant internet. |
||
425 | * |
||
426 | * @var string|null |
||
427 | */ |
||
428 | private $identifiantInternet; |
||
429 | |||
430 | /** |
||
431 | * Inscription rc. |
||
432 | * |
||
433 | * @var DateTime|null |
||
434 | */ |
||
435 | private $inscriptionRc; |
||
436 | |||
437 | /** |
||
438 | * Inscription rm. |
||
439 | * |
||
440 | * @var DateTime|null |
||
441 | */ |
||
442 | private $inscriptionRm; |
||
443 | |||
444 | /** |
||
445 | * Is client. |
||
446 | * |
||
447 | * @var string|null |
||
448 | */ |
||
449 | private $isClient; |
||
450 | |||
451 | /** |
||
452 | * Is fournisseur. |
||
453 | * |
||
454 | * @var string|null |
||
455 | */ |
||
456 | private $isFournisseur; |
||
457 | |||
458 | /** |
||
459 | * Mdp internet. |
||
460 | * |
||
461 | * @var string|null |
||
462 | */ |
||
463 | private $mdpInternet; |
||
464 | |||
465 | /** |
||
466 | * Mission principale. |
||
467 | * |
||
468 | * @var string|null |
||
469 | */ |
||
470 | private $missionPrincipale; |
||
471 | |||
472 | /** |
||
473 | * Nationalite. |
||
474 | * |
||
475 | * @var string|null |
||
476 | */ |
||
477 | private $nationalite; |
||
478 | |||
479 | /** |
||
480 | * Nb enfants. |
||
481 | * |
||
482 | * @var string|null |
||
483 | */ |
||
484 | private $nbEnfants; |
||
485 | |||
486 | /** |
||
487 | * Nb km. |
||
488 | * |
||
489 | * @var float|null |
||
490 | */ |
||
491 | private $nbKm; |
||
492 | |||
493 | /** |
||
494 | * Nie1. |
||
495 | * |
||
496 | * @var string|null |
||
497 | */ |
||
498 | private $nie1; |
||
499 | |||
500 | /** |
||
501 | * Nie2. |
||
502 | * |
||
503 | * @var string|null |
||
504 | */ |
||
505 | private $nie2; |
||
506 | |||
507 | /** |
||
508 | * Nir. |
||
509 | * |
||
510 | * @var string|null |
||
511 | */ |
||
512 | private $nir; |
||
513 | |||
514 | /** |
||
515 | * Nom. |
||
516 | * |
||
517 | * @var string|null |
||
518 | */ |
||
519 | private $nom; |
||
520 | |||
521 | /** |
||
522 | * Nom marital. |
||
523 | * |
||
524 | * @var string|null |
||
525 | */ |
||
526 | private $nomMarital; |
||
527 | |||
528 | /** |
||
529 | * Nom mere. |
||
530 | * |
||
531 | * @var string|null |
||
532 | */ |
||
533 | private $nomMere; |
||
534 | |||
535 | /** |
||
536 | * Nom pere. |
||
537 | * |
||
538 | * @var string|null |
||
539 | */ |
||
540 | private $nomPere; |
||
541 | |||
542 | /** |
||
543 | * Nom suite. |
||
544 | * |
||
545 | * @var string|null |
||
546 | */ |
||
547 | private $nomSuite; |
||
548 | |||
549 | /** |
||
550 | * Nom ville. |
||
551 | * |
||
552 | * @var string|null |
||
553 | */ |
||
554 | private $nomVille; |
||
555 | |||
556 | /** |
||
557 | * Nom ville2. |
||
558 | * |
||
559 | * @var string|null |
||
560 | */ |
||
561 | private $nomVille2; |
||
562 | |||
563 | /** |
||
564 | * Nom voie. |
||
565 | * |
||
566 | * @var string|null |
||
567 | */ |
||
568 | private $nomVoie; |
||
569 | |||
570 | /** |
||
571 | * Nom voie2. |
||
572 | * |
||
573 | * @var string|null |
||
574 | */ |
||
575 | private $nomVoie2; |
||
576 | |||
577 | /** |
||
578 | * Nombre actions. |
||
579 | * |
||
580 | * @var int|null |
||
581 | */ |
||
582 | private $nombreActions; |
||
583 | |||
584 | /** |
||
585 | * Num agrement cga. |
||
586 | * |
||
587 | * @var string|null |
||
588 | */ |
||
589 | private $numAgrementCga; |
||
590 | |||
591 | /** |
||
592 | * Num voie. |
||
593 | * |
||
594 | * @var string|null |
||
595 | */ |
||
596 | private $numVoie; |
||
597 | |||
598 | /** |
||
599 | * Num voie2. |
||
600 | * |
||
601 | * @var string|null |
||
602 | */ |
||
603 | private $numVoie2; |
||
604 | |||
605 | /** |
||
606 | * Pays. |
||
607 | * |
||
608 | * @var string|null |
||
609 | */ |
||
610 | private $pays; |
||
611 | |||
612 | /** |
||
613 | * Pays naissance. |
||
614 | * |
||
615 | * @var string|null |
||
616 | */ |
||
617 | private $paysNaissance; |
||
618 | |||
619 | /** |
||
620 | * Personne physique. |
||
621 | * |
||
622 | * @var bool|null |
||
623 | */ |
||
624 | private $personnePhysique; |
||
625 | |||
626 | /** |
||
627 | * Portable1. |
||
628 | * |
||
629 | * @var string|null |
||
630 | */ |
||
631 | private $portable1; |
||
632 | |||
633 | /** |
||
634 | * Portable12. |
||
635 | * |
||
636 | * @var string|null |
||
637 | */ |
||
638 | private $portable12; |
||
639 | |||
640 | /** |
||
641 | * Portable2. |
||
642 | * |
||
643 | * @var string|null |
||
644 | */ |
||
645 | private $portable2; |
||
646 | |||
647 | /** |
||
648 | * Portable22. |
||
649 | * |
||
650 | * @var string|null |
||
651 | */ |
||
652 | private $portable22; |
||
653 | |||
654 | /** |
||
655 | * Prenom. |
||
656 | * |
||
657 | * @var string|null |
||
658 | */ |
||
659 | private $prenom; |
||
660 | |||
661 | /** |
||
662 | * Qualite. |
||
663 | * |
||
664 | * @var string|null |
||
665 | */ |
||
666 | private $qualite; |
||
667 | |||
668 | /** |
||
669 | * Rc. |
||
670 | * |
||
671 | * @var string|null |
||
672 | */ |
||
673 | private $rc; |
||
674 | |||
675 | /** |
||
676 | * Rc code. |
||
677 | * |
||
678 | * @var string|null |
||
679 | */ |
||
680 | private $rcCode; |
||
681 | |||
682 | /** |
||
683 | * Regime matrimonial. |
||
684 | * |
||
685 | * @var string|null |
||
686 | */ |
||
687 | private $regimeMatrimonial; |
||
688 | |||
689 | /** |
||
690 | * Regime matrimoniale. |
||
691 | * |
||
692 | * @var string|null |
||
693 | */ |
||
694 | private $regimeMatrimoniale; |
||
695 | |||
696 | /** |
||
697 | * Rib. |
||
698 | * |
||
699 | * @var string|null |
||
700 | */ |
||
701 | private $rib; |
||
702 | |||
703 | /** |
||
704 | * Rm. |
||
705 | * |
||
706 | * @var string|null |
||
707 | */ |
||
708 | private $rm; |
||
709 | |||
710 | /** |
||
711 | * Rm code. |
||
712 | * |
||
713 | * @var string|null |
||
714 | */ |
||
715 | private $rmCode; |
||
716 | |||
717 | /** |
||
718 | * Salarie independant. |
||
719 | * |
||
720 | * @var string|null |
||
721 | */ |
||
722 | private $salarieIndependant; |
||
723 | |||
724 | /** |
||
725 | * Siret. |
||
726 | * |
||
727 | * @var string|null |
||
728 | */ |
||
729 | private $siret; |
||
730 | |||
731 | /** |
||
732 | * Situation fam. |
||
733 | * |
||
734 | * @var string|null |
||
735 | */ |
||
736 | private $situationFam; |
||
737 | |||
738 | /** |
||
739 | * Tel1. |
||
740 | * |
||
741 | * @var string|null |
||
742 | */ |
||
743 | private $tel1; |
||
744 | |||
745 | /** |
||
746 | * Tel12. |
||
747 | * |
||
748 | * @var string|null |
||
749 | */ |
||
750 | private $tel12; |
||
751 | |||
752 | /** |
||
753 | * Tel2. |
||
754 | * |
||
755 | * @var string|null |
||
756 | */ |
||
757 | private $tel2; |
||
758 | |||
759 | /** |
||
760 | * Tel22. |
||
761 | * |
||
762 | * @var string|null |
||
763 | */ |
||
764 | private $tel22; |
||
765 | |||
766 | /** |
||
767 | * Tel voiture. |
||
768 | * |
||
769 | * @var string|null |
||
770 | */ |
||
771 | private $telVoiture; |
||
772 | |||
773 | /** |
||
774 | * Tel voiture2. |
||
775 | * |
||
776 | * @var string|null |
||
777 | */ |
||
778 | private $telVoiture2; |
||
779 | |||
780 | /** |
||
781 | * Telex. |
||
782 | * |
||
783 | * @var string|null |
||
784 | */ |
||
785 | private $telex; |
||
786 | |||
787 | /** |
||
788 | * Telex2. |
||
789 | * |
||
790 | * @var string|null |
||
791 | */ |
||
792 | private $telex2; |
||
793 | |||
794 | /** |
||
795 | * Travail a domicile. |
||
796 | * |
||
797 | * @var bool|null |
||
798 | */ |
||
799 | private $travailADomicile; |
||
800 | |||
801 | /** |
||
802 | * Type. |
||
803 | * |
||
804 | * @var string|null |
||
805 | */ |
||
806 | private $type; |
||
807 | |||
808 | /** |
||
809 | * Type societe. |
||
810 | * |
||
811 | * @var string|null |
||
812 | */ |
||
813 | private $typeSociete; |
||
814 | |||
815 | /** |
||
816 | * Ville mariage. |
||
817 | * |
||
818 | * @var string|null |
||
819 | */ |
||
820 | private $villeMariage; |
||
821 | |||
822 | /** |
||
823 | * Ville naissance. |
||
824 | * |
||
825 | * @var string|null |
||
826 | */ |
||
827 | private $villeNaissance; |
||
828 | |||
829 | /** |
||
830 | * Ville rc. |
||
831 | * |
||
832 | * @var string|null |
||
833 | */ |
||
834 | private $villeRc; |
||
835 | |||
836 | /** |
||
837 | * Ville rm. |
||
838 | * |
||
839 | * @var string|null |
||
840 | */ |
||
841 | private $villeRm; |
||
842 | |||
843 | /** |
||
844 | * Zip code. |
||
845 | * |
||
846 | * @var string|null |
||
847 | */ |
||
848 | private $zipCode; |
||
849 | |||
850 | /** |
||
851 | * Constructor. |
||
852 | */ |
||
853 | public function __construct() { |
||
856 | |||
857 | /** |
||
858 | * Get the adresse site client. |
||
859 | * |
||
860 | * @return string|null Returns the adresse site client. |
||
861 | */ |
||
862 | public function getAdresseSiteClient(): ?string { |
||
865 | |||
866 | /** |
||
867 | * Get the adresse transpac. |
||
868 | * |
||
869 | * @return string|null Returns the adresse transpac. |
||
870 | */ |
||
871 | public function getAdresseTranspac(): ?string { |
||
874 | |||
875 | /** |
||
876 | * Get the age. |
||
877 | * |
||
878 | * @return string|null Returns the age. |
||
879 | */ |
||
880 | public function getAge(): ?string { |
||
883 | |||
884 | /** |
||
885 | * Get the autoriser acces internet. |
||
886 | * |
||
887 | * @return bool|null Returns the autoriser acces internet. |
||
888 | */ |
||
889 | public function getAutoriserAccesInternet(): ?bool { |
||
892 | |||
893 | /** |
||
894 | * Get the bic. |
||
895 | * |
||
896 | * @return string|null Returns the bic. |
||
897 | */ |
||
898 | public function getBic(): ?string { |
||
901 | |||
902 | /** |
||
903 | * Get the btq. |
||
904 | * |
||
905 | * @return string|null Returns the btq. |
||
906 | */ |
||
907 | public function getBtq(): ?string { |
||
910 | |||
911 | /** |
||
912 | * Get the btq2. |
||
913 | * |
||
914 | * @return string|null Returns the btq2. |
||
915 | */ |
||
916 | public function getBtq2(): ?string { |
||
919 | |||
920 | /** |
||
921 | * Get the bureau distributeur. |
||
922 | * |
||
923 | * @return string|null Returns the bureau distributeur. |
||
924 | */ |
||
925 | public function getBureauDistributeur(): ?string { |
||
928 | |||
929 | /** |
||
930 | * Get the bureau distributeur2. |
||
931 | * |
||
932 | * @return string|null Returns the bureau distributeur2. |
||
933 | */ |
||
934 | public function getBureauDistributeur2(): ?string { |
||
937 | |||
938 | /** |
||
939 | * Get the capital. |
||
940 | * |
||
941 | * @return float|null Returns the capital. |
||
942 | */ |
||
943 | public function getCapital(): ?float { |
||
946 | |||
947 | /** |
||
948 | * Get the capital monnaie. |
||
949 | * |
||
950 | * @return string|null Returns the capital monnaie. |
||
951 | */ |
||
952 | public function getCapitalMonnaie(): ?string { |
||
955 | |||
956 | /** |
||
957 | * Get the categorie juridique. |
||
958 | * |
||
959 | * @return string|null Returns the categorie juridique. |
||
960 | */ |
||
961 | public function getCategorieJuridique(): ?string { |
||
964 | |||
965 | /** |
||
966 | * Get the civilite. |
||
967 | * |
||
968 | * @return string|null Returns the civilite. |
||
969 | */ |
||
970 | public function getCivilite(): ?string { |
||
973 | |||
974 | /** |
||
975 | * Get the code. |
||
976 | * |
||
977 | * @return string|null Returns the code. |
||
978 | */ |
||
979 | public function getCode(): ?string { |
||
982 | |||
983 | /** |
||
984 | * Get the code epoux. |
||
985 | * |
||
986 | * @return string|null Returns the code epoux. |
||
987 | */ |
||
988 | public function getCodeEpoux(): ?string { |
||
991 | |||
992 | /** |
||
993 | * Get the code insee. |
||
994 | * |
||
995 | * @return string|null Returns the code insee. |
||
996 | */ |
||
997 | public function getCodeInsee(): ?string { |
||
1000 | |||
1001 | /** |
||
1002 | * Get the code naf. |
||
1003 | * |
||
1004 | * @return string|null Returns the code naf. |
||
1005 | */ |
||
1006 | public function getCodeNaf(): ?string { |
||
1009 | |||
1010 | /** |
||
1011 | * Get the code naf2008. |
||
1012 | * |
||
1013 | * @return string|null Returns the code naf2008. |
||
1014 | */ |
||
1015 | public function getCodeNaf2008(): ?string { |
||
1018 | |||
1019 | /** |
||
1020 | * Get the code officiel commune. |
||
1021 | * |
||
1022 | * @return string|null Returns the code officiel commune. |
||
1023 | */ |
||
1024 | public function getCodeOfficielCommune(): ?string { |
||
1027 | |||
1028 | /** |
||
1029 | * Get the code officiel commune2. |
||
1030 | * |
||
1031 | * @return string|null Returns the code officiel commune2. |
||
1032 | */ |
||
1033 | public function getCodeOfficielCommune2(): ?string { |
||
1036 | |||
1037 | /** |
||
1038 | * Get the code pays iso. |
||
1039 | * |
||
1040 | * @return string|null Returns the code pays iso. |
||
1041 | */ |
||
1042 | public function getCodePaysIso(): ?string { |
||
1045 | |||
1046 | /** |
||
1047 | * Get the code pays iso naiss. |
||
1048 | * |
||
1049 | * @return string|null Returns the code pays iso naiss. |
||
1050 | */ |
||
1051 | public function getCodePaysIsoNaiss(): ?string { |
||
1054 | |||
1055 | /** |
||
1056 | * Get the code postal. |
||
1057 | * |
||
1058 | * @return string|null Returns the code postal. |
||
1059 | */ |
||
1060 | public function getCodePostal(): ?string { |
||
1063 | |||
1064 | /** |
||
1065 | * Get the code postal2. |
||
1066 | * |
||
1067 | * @return string|null Returns the code postal2. |
||
1068 | */ |
||
1069 | public function getCodePostal2(): ?string { |
||
1072 | |||
1073 | /** |
||
1074 | * Get the code postal mariage. |
||
1075 | * |
||
1076 | * @return string|null Returns the code postal mariage. |
||
1077 | */ |
||
1078 | public function getCodePostalMariage(): ?string { |
||
1081 | |||
1082 | /** |
||
1083 | * Get the code postal naissance. |
||
1084 | * |
||
1085 | * @return string|null Returns the code postal naissance. |
||
1086 | */ |
||
1087 | public function getCodePostalNaissance(): ?string { |
||
1090 | |||
1091 | /** |
||
1092 | * Get the code postal rc. |
||
1093 | * |
||
1094 | * @return string|null Returns the code postal rc. |
||
1095 | */ |
||
1096 | public function getCodePostalRc(): ?string { |
||
1099 | |||
1100 | /** |
||
1101 | * Get the code postal rm. |
||
1102 | * |
||
1103 | * @return string|null Returns the code postal rm. |
||
1104 | */ |
||
1105 | public function getCodePostalRm(): ?string { |
||
1108 | |||
1109 | /** |
||
1110 | * Get the code responsable. |
||
1111 | * |
||
1112 | * @return string|null Returns the code responsable. |
||
1113 | */ |
||
1114 | public function getCodeResponsable(): ?string { |
||
1117 | |||
1118 | /** |
||
1119 | * Get the complement. |
||
1120 | * |
||
1121 | * @return string|null Returns the complement. |
||
1122 | */ |
||
1123 | public function getComplement(): ?string { |
||
1126 | |||
1127 | /** |
||
1128 | * Get the complement2. |
||
1129 | * |
||
1130 | * @return string|null Returns the complement2. |
||
1131 | */ |
||
1132 | public function getComplement2(): ?string { |
||
1135 | |||
1136 | /** |
||
1137 | * Get the complement suite. |
||
1138 | * |
||
1139 | * @return string|null Returns the complement suite. |
||
1140 | */ |
||
1141 | public function getComplementSuite(): ?string { |
||
1144 | |||
1145 | /** |
||
1146 | * Get the compteur liens. |
||
1147 | * |
||
1148 | * @return int|null Returns the compteur liens. |
||
1149 | */ |
||
1150 | public function getCompteurLiens(): ?int { |
||
1153 | |||
1154 | /** |
||
1155 | * Get the contact. |
||
1156 | * |
||
1157 | * @return string|null Returns the contact. |
||
1158 | */ |
||
1159 | public function getContact(): ?string { |
||
1162 | |||
1163 | /** |
||
1164 | * Get the creation societe. |
||
1165 | * |
||
1166 | * @return DateTime|null Returns the creation societe. |
||
1167 | */ |
||
1168 | public function getCreationSociete(): ?DateTime { |
||
1171 | |||
1172 | /** |
||
1173 | * Get the date creat. |
||
1174 | * |
||
1175 | * @return DateTime|null Returns the date creat. |
||
1176 | */ |
||
1177 | public function getDateCreat(): ?DateTime { |
||
1180 | |||
1181 | /** |
||
1182 | * Get the date deb activite. |
||
1183 | * |
||
1184 | * @return DateTime|null Returns the date deb activite. |
||
1185 | */ |
||
1186 | public function getDateDebActivite(): ?DateTime { |
||
1189 | |||
1190 | /** |
||
1191 | * Get the date divorce. |
||
1192 | * |
||
1193 | * @return DateTime|null Returns the date divorce. |
||
1194 | */ |
||
1195 | public function getDateDivorce(): ?DateTime { |
||
1198 | |||
1199 | /** |
||
1200 | * Get the date installation. |
||
1201 | * |
||
1202 | * @return DateTime|null Returns the date installation. |
||
1203 | */ |
||
1204 | public function getDateInstallation(): ?DateTime { |
||
1207 | |||
1208 | /** |
||
1209 | * Get the date mariage. |
||
1210 | * |
||
1211 | * @return DateTime|null Returns the date mariage. |
||
1212 | */ |
||
1213 | public function getDateMariage(): ?DateTime { |
||
1216 | |||
1217 | /** |
||
1218 | * Get the date modif. |
||
1219 | * |
||
1220 | * @return DateTime|null Returns the date modif. |
||
1221 | */ |
||
1222 | public function getDateModif(): ?DateTime { |
||
1225 | |||
1226 | /** |
||
1227 | * Get the date naissance. |
||
1228 | * |
||
1229 | * @return DateTime|null Returns the date naissance. |
||
1230 | */ |
||
1231 | public function getDateNaissance(): ?DateTime { |
||
1234 | |||
1235 | /** |
||
1236 | * Get the donnees appel. |
||
1237 | * |
||
1238 | * @return string|null Returns the donnees appel. |
||
1239 | */ |
||
1240 | public function getDonneesAppel(): ?string { |
||
1243 | |||
1244 | /** |
||
1245 | * Get the droit collab visu documents. |
||
1246 | * |
||
1247 | * @return string|null Returns the droit collab visu documents. |
||
1248 | */ |
||
1249 | public function getDroitCollabVisuDocuments(): ?string { |
||
1252 | |||
1253 | /** |
||
1254 | * Get the duree societe. |
||
1255 | * |
||
1256 | * @return string|null Returns the duree societe. |
||
1257 | */ |
||
1258 | public function getDureeSociete(): ?string { |
||
1261 | |||
1262 | /** |
||
1263 | * Get the email. |
||
1264 | * |
||
1265 | * @return string|null Returns the email. |
||
1266 | */ |
||
1267 | public function getEmail(): ?string { |
||
1270 | |||
1271 | /** |
||
1272 | * Get the email2. |
||
1273 | * |
||
1274 | * @return string|null Returns the email2. |
||
1275 | */ |
||
1276 | public function getEmail2(): ?string { |
||
1279 | |||
1280 | /** |
||
1281 | * Get the enseigne. |
||
1282 | * |
||
1283 | * @return string|null Returns the enseigne. |
||
1284 | */ |
||
1285 | public function getEnseigne(): ?string { |
||
1288 | |||
1289 | /** |
||
1290 | * Get the fax. |
||
1291 | * |
||
1292 | * @return string|null Returns the fax. |
||
1293 | */ |
||
1294 | public function getFax(): ?string { |
||
1297 | |||
1298 | /** |
||
1299 | * Get the fax2. |
||
1300 | * |
||
1301 | * @return string|null Returns the fax2. |
||
1302 | */ |
||
1303 | public function getFax2(): ?string { |
||
1306 | |||
1307 | /** |
||
1308 | * Get the frp cle. |
||
1309 | * |
||
1310 | * @return string|null Returns the frp cle. |
||
1311 | */ |
||
1312 | public function getFrpCle(): ?string { |
||
1315 | |||
1316 | /** |
||
1317 | * Get the frp dossier. |
||
1318 | * |
||
1319 | * @return string|null Returns the frp dossier. |
||
1320 | */ |
||
1321 | public function getFrpDossier(): ?string { |
||
1324 | |||
1325 | /** |
||
1326 | * Get the frp recette. |
||
1327 | * |
||
1328 | * @return string|null Returns the frp recette. |
||
1329 | */ |
||
1330 | public function getFrpRecette(): ?string { |
||
1333 | |||
1334 | /** |
||
1335 | * Get the gest juri. |
||
1336 | * |
||
1337 | * @return bool|null Returns the gest juri. |
||
1338 | */ |
||
1339 | public function getGestJuri(): ?bool { |
||
1342 | |||
1343 | /** |
||
1344 | * Get the iban. |
||
1345 | * |
||
1346 | * @return string|null Returns the iban. |
||
1347 | */ |
||
1348 | public function getIban(): ?string { |
||
1351 | |||
1352 | /** |
||
1353 | * Get the ident tva. |
||
1354 | * |
||
1355 | * @return string|null Returns the ident tva. |
||
1356 | */ |
||
1357 | public function getIdentTva(): ?string { |
||
1360 | |||
1361 | /** |
||
1362 | * Get the identifiant. |
||
1363 | * |
||
1364 | * @return string|null Returns the identifiant. |
||
1365 | */ |
||
1366 | public function getIdentifiant(): ?string { |
||
1369 | |||
1370 | /** |
||
1371 | * Get the identifiant internet. |
||
1372 | * |
||
1373 | * @return string|null Returns the identifiant internet. |
||
1374 | */ |
||
1375 | public function getIdentifiantInternet(): ?string { |
||
1378 | |||
1379 | /** |
||
1380 | * Get the inscription rc. |
||
1381 | * |
||
1382 | * @return DateTime|null Returns the inscription rc. |
||
1383 | */ |
||
1384 | public function getInscriptionRc(): ?DateTime { |
||
1387 | |||
1388 | /** |
||
1389 | * Get the inscription rm. |
||
1390 | * |
||
1391 | * @return DateTime|null Returns the inscription rm. |
||
1392 | */ |
||
1393 | public function getInscriptionRm(): ?DateTime { |
||
1396 | |||
1397 | /** |
||
1398 | * Get the is client. |
||
1399 | * |
||
1400 | * @return string|null Returns the is client. |
||
1401 | */ |
||
1402 | public function getIsClient(): ?string { |
||
1405 | |||
1406 | /** |
||
1407 | * Get the is fournisseur. |
||
1408 | * |
||
1409 | * @return string|null Returns the is fournisseur. |
||
1410 | */ |
||
1411 | public function getIsFournisseur(): ?string { |
||
1414 | |||
1415 | /** |
||
1416 | * Get the mdp internet. |
||
1417 | * |
||
1418 | * @return string|null Returns the mdp internet. |
||
1419 | */ |
||
1420 | public function getMdpInternet(): ?string { |
||
1423 | |||
1424 | /** |
||
1425 | * Get the mission principale. |
||
1426 | * |
||
1427 | * @return string|null Returns the mission principale. |
||
1428 | */ |
||
1429 | public function getMissionPrincipale(): ?string { |
||
1432 | |||
1433 | /** |
||
1434 | * Get the nationalite. |
||
1435 | * |
||
1436 | * @return string|null Returns the nationalite. |
||
1437 | */ |
||
1438 | public function getNationalite(): ?string { |
||
1441 | |||
1442 | /** |
||
1443 | * Get the nb enfants. |
||
1444 | * |
||
1445 | * @return string|null Returns the nb enfants. |
||
1446 | */ |
||
1447 | public function getNbEnfants(): ?string { |
||
1450 | |||
1451 | /** |
||
1452 | * Get the nb km. |
||
1453 | * |
||
1454 | * @return float|null Returns the nb km. |
||
1455 | */ |
||
1456 | public function getNbKm(): ?float { |
||
1459 | |||
1460 | /** |
||
1461 | * Get the nie1. |
||
1462 | * |
||
1463 | * @return string|null Returns the nie1. |
||
1464 | */ |
||
1465 | public function getNie1(): ?string { |
||
1468 | |||
1469 | /** |
||
1470 | * Get the nie2. |
||
1471 | * |
||
1472 | * @return string|null Returns the nie2. |
||
1473 | */ |
||
1474 | public function getNie2(): ?string { |
||
1477 | |||
1478 | /** |
||
1479 | * Get the nir. |
||
1480 | * |
||
1481 | * @return string|null Returns the nir. |
||
1482 | */ |
||
1483 | public function getNir(): ?string { |
||
1486 | |||
1487 | /** |
||
1488 | * Get the nom. |
||
1489 | * |
||
1490 | * @return string|null Returns the nom. |
||
1491 | */ |
||
1492 | public function getNom(): ?string { |
||
1495 | |||
1496 | /** |
||
1497 | * Get the nom marital. |
||
1498 | * |
||
1499 | * @return string|null Returns the nom marital. |
||
1500 | */ |
||
1501 | public function getNomMarital(): ?string { |
||
1504 | |||
1505 | /** |
||
1506 | * Get the nom mere. |
||
1507 | * |
||
1508 | * @return string|null Returns the nom mere. |
||
1509 | */ |
||
1510 | public function getNomMere(): ?string { |
||
1513 | |||
1514 | /** |
||
1515 | * Get the nom pere. |
||
1516 | * |
||
1517 | * @return string|null Returns the nom pere. |
||
1518 | */ |
||
1519 | public function getNomPere(): ?string { |
||
1522 | |||
1523 | /** |
||
1524 | * Get the nom suite. |
||
1525 | * |
||
1526 | * @return string|null Returns the nom suite. |
||
1527 | */ |
||
1528 | public function getNomSuite(): ?string { |
||
1531 | |||
1532 | /** |
||
1533 | * Get the nom ville. |
||
1534 | * |
||
1535 | * @return string|null Returns the nom ville. |
||
1536 | */ |
||
1537 | public function getNomVille(): ?string { |
||
1540 | |||
1541 | /** |
||
1542 | * Get the nom ville2. |
||
1543 | * |
||
1544 | * @return string|null Returns the nom ville2. |
||
1545 | */ |
||
1546 | public function getNomVille2(): ?string { |
||
1549 | |||
1550 | /** |
||
1551 | * Get the nom voie. |
||
1552 | * |
||
1553 | * @return string|null Returns the nom voie. |
||
1554 | */ |
||
1555 | public function getNomVoie(): ?string { |
||
1558 | |||
1559 | /** |
||
1560 | * Get the nom voie2. |
||
1561 | * |
||
1562 | * @return string|null Returns the nom voie2. |
||
1563 | */ |
||
1564 | public function getNomVoie2(): ?string { |
||
1567 | |||
1568 | /** |
||
1569 | * Get the nombre actions. |
||
1570 | * |
||
1571 | * @return int|null Returns the nombre actions. |
||
1572 | */ |
||
1573 | public function getNombreActions(): ?int { |
||
1576 | |||
1577 | /** |
||
1578 | * Get the num agrement cga. |
||
1579 | * |
||
1580 | * @return string|null Returns the num agrement cga. |
||
1581 | */ |
||
1582 | public function getNumAgrementCga(): ?string { |
||
1585 | |||
1586 | /** |
||
1587 | * Get the num voie. |
||
1588 | * |
||
1589 | * @return string|null Returns the num voie. |
||
1590 | */ |
||
1591 | public function getNumVoie(): ?string { |
||
1594 | |||
1595 | /** |
||
1596 | * Get the num voie2. |
||
1597 | * |
||
1598 | * @return string|null Returns the num voie2. |
||
1599 | */ |
||
1600 | public function getNumVoie2(): ?string { |
||
1603 | |||
1604 | /** |
||
1605 | * Get the pays. |
||
1606 | * |
||
1607 | * @return string|null Returns the pays. |
||
1608 | */ |
||
1609 | public function getPays(): ?string { |
||
1612 | |||
1613 | /** |
||
1614 | * Get the pays naissance. |
||
1615 | * |
||
1616 | * @return string|null Returns the pays naissance. |
||
1617 | */ |
||
1618 | public function getPaysNaissance(): ?string { |
||
1621 | |||
1622 | /** |
||
1623 | * Get the personne physique. |
||
1624 | * |
||
1625 | * @return bool|null Returns the personne physique. |
||
1626 | */ |
||
1627 | public function getPersonnePhysique(): ?bool { |
||
1630 | |||
1631 | /** |
||
1632 | * Get the portable1. |
||
1633 | * |
||
1634 | * @return string|null Returns the portable1. |
||
1635 | */ |
||
1636 | public function getPortable1(): ?string { |
||
1639 | |||
1640 | /** |
||
1641 | * Get the portable12. |
||
1642 | * |
||
1643 | * @return string|null Returns the portable12. |
||
1644 | */ |
||
1645 | public function getPortable12(): ?string { |
||
1648 | |||
1649 | /** |
||
1650 | * Get the portable2. |
||
1651 | * |
||
1652 | * @return string|null Returns the portable2. |
||
1653 | */ |
||
1654 | public function getPortable2(): ?string { |
||
1657 | |||
1658 | /** |
||
1659 | * Get the portable22. |
||
1660 | * |
||
1661 | * @return string|null Returns the portable22. |
||
1662 | */ |
||
1663 | public function getPortable22(): ?string { |
||
1666 | |||
1667 | /** |
||
1668 | * Get the prenom. |
||
1669 | * |
||
1670 | * @return string|null Returns the prenom. |
||
1671 | */ |
||
1672 | public function getPrenom(): ?string { |
||
1675 | |||
1676 | /** |
||
1677 | * Get the qualite. |
||
1678 | * |
||
1679 | * @return string|null Returns the qualite. |
||
1680 | */ |
||
1681 | public function getQualite(): ?string { |
||
1684 | |||
1685 | /** |
||
1686 | * Get the rc. |
||
1687 | * |
||
1688 | * @return string|null Returns the rc. |
||
1689 | */ |
||
1690 | public function getRc(): ?string { |
||
1693 | |||
1694 | /** |
||
1695 | * Get the rc code. |
||
1696 | * |
||
1697 | * @return string|null Returns the rc code. |
||
1698 | */ |
||
1699 | public function getRcCode(): ?string { |
||
1702 | |||
1703 | /** |
||
1704 | * Get the regime matrimonial. |
||
1705 | * |
||
1706 | * @return string|null Returns the regime matrimonial. |
||
1707 | */ |
||
1708 | public function getRegimeMatrimonial(): ?string { |
||
1711 | |||
1712 | /** |
||
1713 | * Get the regime matrimoniale. |
||
1714 | * |
||
1715 | * @return string|null Returns the regime matrimoniale. |
||
1716 | */ |
||
1717 | public function getRegimeMatrimoniale(): ?string { |
||
1720 | |||
1721 | /** |
||
1722 | * Get the rib. |
||
1723 | * |
||
1724 | * @return string|null Returns the rib. |
||
1725 | */ |
||
1726 | public function getRib(): ?string { |
||
1729 | |||
1730 | /** |
||
1731 | * Get the rm. |
||
1732 | * |
||
1733 | * @return string|null Returns the rm. |
||
1734 | */ |
||
1735 | public function getRm(): ?string { |
||
1738 | |||
1739 | /** |
||
1740 | * Get the rm code. |
||
1741 | * |
||
1742 | * @return string|null Returns the rm code. |
||
1743 | */ |
||
1744 | public function getRmCode(): ?string { |
||
1747 | |||
1748 | /** |
||
1749 | * Get the salarie independant. |
||
1750 | * |
||
1751 | * @return string|null Returns the salarie independant. |
||
1752 | */ |
||
1753 | public function getSalarieIndependant(): ?string { |
||
1756 | |||
1757 | /** |
||
1758 | * Get the siret. |
||
1759 | * |
||
1760 | * @return string|null Returns the siret. |
||
1761 | */ |
||
1762 | public function getSiret(): ?string { |
||
1765 | |||
1766 | /** |
||
1767 | * Get the situation fam. |
||
1768 | * |
||
1769 | * @return string|null Returns the situation fam. |
||
1770 | */ |
||
1771 | public function getSituationFam(): ?string { |
||
1774 | |||
1775 | /** |
||
1776 | * Get the tel1. |
||
1777 | * |
||
1778 | * @return string|null Returns the tel1. |
||
1779 | */ |
||
1780 | public function getTel1(): ?string { |
||
1783 | |||
1784 | /** |
||
1785 | * Get the tel12. |
||
1786 | * |
||
1787 | * @return string|null Returns the tel12. |
||
1788 | */ |
||
1789 | public function getTel12(): ?string { |
||
1792 | |||
1793 | /** |
||
1794 | * Get the tel2. |
||
1795 | * |
||
1796 | * @return string|null Returns the tel2. |
||
1797 | */ |
||
1798 | public function getTel2(): ?string { |
||
1801 | |||
1802 | /** |
||
1803 | * Get the tel22. |
||
1804 | * |
||
1805 | * @return string|null Returns the tel22. |
||
1806 | */ |
||
1807 | public function getTel22(): ?string { |
||
1810 | |||
1811 | /** |
||
1812 | * Get the tel voiture. |
||
1813 | * |
||
1814 | * @return string|null Returns the tel voiture. |
||
1815 | */ |
||
1816 | public function getTelVoiture(): ?string { |
||
1819 | |||
1820 | /** |
||
1821 | * Get the tel voiture2. |
||
1822 | * |
||
1823 | * @return string|null Returns the tel voiture2. |
||
1824 | */ |
||
1825 | public function getTelVoiture2(): ?string { |
||
1828 | |||
1829 | /** |
||
1830 | * Get the telex. |
||
1831 | * |
||
1832 | * @return string|null Returns the telex. |
||
1833 | */ |
||
1834 | public function getTelex(): ?string { |
||
1837 | |||
1838 | /** |
||
1839 | * Get the telex2. |
||
1840 | * |
||
1841 | * @return string|null Returns the telex2. |
||
1842 | */ |
||
1843 | public function getTelex2(): ?string { |
||
1846 | |||
1847 | /** |
||
1848 | * Get the travail a domicile. |
||
1849 | * |
||
1850 | * @return bool|null Returns the travail a domicile. |
||
1851 | */ |
||
1852 | public function getTravailADomicile(): ?bool { |
||
1855 | |||
1856 | /** |
||
1857 | * Get the type. |
||
1858 | * |
||
1859 | * @return string|null Returns the type. |
||
1860 | */ |
||
1861 | public function getType(): ?string { |
||
1864 | |||
1865 | /** |
||
1866 | * Get the type societe. |
||
1867 | * |
||
1868 | * @return string|null Returns the type societe. |
||
1869 | */ |
||
1870 | public function getTypeSociete(): ?string { |
||
1873 | |||
1874 | /** |
||
1875 | * Get the ville mariage. |
||
1876 | * |
||
1877 | * @return string|null Returns the ville mariage. |
||
1878 | */ |
||
1879 | public function getVilleMariage(): ?string { |
||
1882 | |||
1883 | /** |
||
1884 | * Get the ville naissance. |
||
1885 | * |
||
1886 | * @return string|null Returns the ville naissance. |
||
1887 | */ |
||
1888 | public function getVilleNaissance(): ?string { |
||
1891 | |||
1892 | /** |
||
1893 | * Get the ville rc. |
||
1894 | * |
||
1895 | * @return string|null Returns the ville rc. |
||
1896 | */ |
||
1897 | public function getVilleRc(): ?string { |
||
1900 | |||
1901 | /** |
||
1902 | * Get the ville rm. |
||
1903 | * |
||
1904 | * @return string|null Returns the ville rm. |
||
1905 | */ |
||
1906 | public function getVilleRm(): ?string { |
||
1909 | |||
1910 | /** |
||
1911 | * Get the zip code. |
||
1912 | * |
||
1913 | * @return string|null Returns the zip code. |
||
1914 | */ |
||
1915 | public function getZipCode(): ?string { |
||
1918 | |||
1919 | /** |
||
1920 | * Set the adresse site client. |
||
1921 | * |
||
1922 | * @param string|null $adresseSiteClient The adresse site client. |
||
1923 | * @return Intervenants Returns this Intervenants. |
||
1924 | */ |
||
1925 | public function setAdresseSiteClient(?string $adresseSiteClient): Intervenants { |
||
1929 | |||
1930 | /** |
||
1931 | * Set the adresse transpac. |
||
1932 | * |
||
1933 | * @param string|null $adresseTranspac The adresse transpac. |
||
1934 | * @return Intervenants Returns this Intervenants. |
||
1935 | */ |
||
1936 | public function setAdresseTranspac(?string $adresseTranspac): Intervenants { |
||
1940 | |||
1941 | /** |
||
1942 | * Set the age. |
||
1943 | * |
||
1944 | * @param string|null $age The age. |
||
1945 | * @return Intervenants Returns this Intervenants. |
||
1946 | */ |
||
1947 | public function setAge(?string $age): Intervenants { |
||
1951 | |||
1952 | /** |
||
1953 | * Set the autoriser acces internet. |
||
1954 | * |
||
1955 | * @param bool|null $autoriserAccesInternet The autoriser acces internet. |
||
1956 | * @return Intervenants Returns this Intervenants. |
||
1957 | */ |
||
1958 | public function setAutoriserAccesInternet(?bool $autoriserAccesInternet): Intervenants { |
||
1962 | |||
1963 | /** |
||
1964 | * Set the bic. |
||
1965 | * |
||
1966 | * @param string|null $bic The bic. |
||
1967 | * @return Intervenants Returns this Intervenants. |
||
1968 | */ |
||
1969 | public function setBic(?string $bic): Intervenants { |
||
1973 | |||
1974 | /** |
||
1975 | * Set the btq. |
||
1976 | * |
||
1977 | * @param string|null $btq The btq. |
||
1978 | * @return Intervenants Returns this Intervenants. |
||
1979 | */ |
||
1980 | public function setBtq(?string $btq): Intervenants { |
||
1984 | |||
1985 | /** |
||
1986 | * Set the btq2. |
||
1987 | * |
||
1988 | * @param string|null $btq2 The btq2. |
||
1989 | * @return Intervenants Returns this Intervenants. |
||
1990 | */ |
||
1991 | public function setBtq2(?string $btq2): Intervenants { |
||
1995 | |||
1996 | /** |
||
1997 | * Set the bureau distributeur. |
||
1998 | * |
||
1999 | * @param string|null $bureauDistributeur The bureau distributeur. |
||
2000 | * @return Intervenants Returns this Intervenants. |
||
2001 | */ |
||
2002 | public function setBureauDistributeur(?string $bureauDistributeur): Intervenants { |
||
2006 | |||
2007 | /** |
||
2008 | * Set the bureau distributeur2. |
||
2009 | * |
||
2010 | * @param string|null $bureauDistributeur2 The bureau distributeur2. |
||
2011 | * @return Intervenants Returns this Intervenants. |
||
2012 | */ |
||
2013 | public function setBureauDistributeur2(?string $bureauDistributeur2): Intervenants { |
||
2017 | |||
2018 | /** |
||
2019 | * Set the capital. |
||
2020 | * |
||
2021 | * @param float|null $capital The capital. |
||
2022 | * @return Intervenants Returns this Intervenants. |
||
2023 | */ |
||
2024 | public function setCapital(?float $capital): Intervenants { |
||
2028 | |||
2029 | /** |
||
2030 | * Set the capital monnaie. |
||
2031 | * |
||
2032 | * @param string|null $capitalMonnaie The capital monnaie. |
||
2033 | * @return Intervenants Returns this Intervenants. |
||
2034 | */ |
||
2035 | public function setCapitalMonnaie(?string $capitalMonnaie): Intervenants { |
||
2039 | |||
2040 | /** |
||
2041 | * Set the categorie juridique. |
||
2042 | * |
||
2043 | * @param string|null $categorieJuridique The categorie juridique. |
||
2044 | * @return Intervenants Returns this Intervenants. |
||
2045 | */ |
||
2046 | public function setCategorieJuridique(?string $categorieJuridique): Intervenants { |
||
2050 | |||
2051 | /** |
||
2052 | * Set the civilite. |
||
2053 | * |
||
2054 | * @param string|null $civilite The civilite. |
||
2055 | * @return Intervenants Returns this Intervenants. |
||
2056 | */ |
||
2057 | public function setCivilite(?string $civilite): Intervenants { |
||
2061 | |||
2062 | /** |
||
2063 | * Set the code. |
||
2064 | * |
||
2065 | * @param string|null $code The code. |
||
2066 | * @return Intervenants Returns this Intervenants. |
||
2067 | */ |
||
2068 | public function setCode(?string $code): Intervenants { |
||
2072 | |||
2073 | /** |
||
2074 | * Set the code epoux. |
||
2075 | * |
||
2076 | * @param string|null $codeEpoux The code epoux. |
||
2077 | * @return Intervenants Returns this Intervenants. |
||
2078 | */ |
||
2079 | public function setCodeEpoux(?string $codeEpoux): Intervenants { |
||
2083 | |||
2084 | /** |
||
2085 | * Set the code insee. |
||
2086 | * |
||
2087 | * @param string|null $codeInsee The code insee. |
||
2088 | * @return Intervenants Returns this Intervenants. |
||
2089 | */ |
||
2090 | public function setCodeInsee(?string $codeInsee): Intervenants { |
||
2094 | |||
2095 | /** |
||
2096 | * Set the code naf. |
||
2097 | * |
||
2098 | * @param string|null $codeNaf The code naf. |
||
2099 | * @return Intervenants Returns this Intervenants. |
||
2100 | */ |
||
2101 | public function setCodeNaf(?string $codeNaf): Intervenants { |
||
2105 | |||
2106 | /** |
||
2107 | * Set the code naf2008. |
||
2108 | * |
||
2109 | * @param string|null $codeNaf2008 The code naf2008. |
||
2110 | * @return Intervenants Returns this Intervenants. |
||
2111 | */ |
||
2112 | public function setCodeNaf2008(?string $codeNaf2008): Intervenants { |
||
2116 | |||
2117 | /** |
||
2118 | * Set the code officiel commune. |
||
2119 | * |
||
2120 | * @param string|null $codeOfficielCommune The code officiel commune. |
||
2121 | * @return Intervenants Returns this Intervenants. |
||
2122 | */ |
||
2123 | public function setCodeOfficielCommune(?string $codeOfficielCommune): Intervenants { |
||
2127 | |||
2128 | /** |
||
2129 | * Set the code officiel commune2. |
||
2130 | * |
||
2131 | * @param string|null $codeOfficielCommune2 The code officiel commune2. |
||
2132 | * @return Intervenants Returns this Intervenants. |
||
2133 | */ |
||
2134 | public function setCodeOfficielCommune2(?string $codeOfficielCommune2): Intervenants { |
||
2138 | |||
2139 | /** |
||
2140 | * Set the code pays iso. |
||
2141 | * |
||
2142 | * @param string|null $codePaysIso The code pays iso. |
||
2143 | * @return Intervenants Returns this Intervenants. |
||
2144 | */ |
||
2145 | public function setCodePaysIso(?string $codePaysIso): Intervenants { |
||
2149 | |||
2150 | /** |
||
2151 | * Set the code pays iso naiss. |
||
2152 | * |
||
2153 | * @param string|null $codePaysIsoNaiss The code pays iso naiss. |
||
2154 | * @return Intervenants Returns this Intervenants. |
||
2155 | */ |
||
2156 | public function setCodePaysIsoNaiss(?string $codePaysIsoNaiss): Intervenants { |
||
2160 | |||
2161 | /** |
||
2162 | * Set the code postal. |
||
2163 | * |
||
2164 | * @param string|null $codePostal The code postal. |
||
2165 | * @return Intervenants Returns this Intervenants. |
||
2166 | */ |
||
2167 | public function setCodePostal(?string $codePostal): Intervenants { |
||
2171 | |||
2172 | /** |
||
2173 | * Set the code postal2. |
||
2174 | * |
||
2175 | * @param string|null $codePostal2 The code postal2. |
||
2176 | * @return Intervenants Returns this Intervenants. |
||
2177 | */ |
||
2178 | public function setCodePostal2(?string $codePostal2): Intervenants { |
||
2182 | |||
2183 | /** |
||
2184 | * Set the code postal mariage. |
||
2185 | * |
||
2186 | * @param string|null $codePostalMariage The code postal mariage. |
||
2187 | * @return Intervenants Returns this Intervenants. |
||
2188 | */ |
||
2189 | public function setCodePostalMariage(?string $codePostalMariage): Intervenants { |
||
2193 | |||
2194 | /** |
||
2195 | * Set the code postal naissance. |
||
2196 | * |
||
2197 | * @param string|null $codePostalNaissance The code postal naissance. |
||
2198 | * @return Intervenants Returns this Intervenants. |
||
2199 | */ |
||
2200 | public function setCodePostalNaissance(?string $codePostalNaissance): Intervenants { |
||
2204 | |||
2205 | /** |
||
2206 | * Set the code postal rc. |
||
2207 | * |
||
2208 | * @param string|null $codePostalRc The code postal rc. |
||
2209 | * @return Intervenants Returns this Intervenants. |
||
2210 | */ |
||
2211 | public function setCodePostalRc(?string $codePostalRc): Intervenants { |
||
2215 | |||
2216 | /** |
||
2217 | * Set the code postal rm. |
||
2218 | * |
||
2219 | * @param string|null $codePostalRm The code postal rm. |
||
2220 | * @return Intervenants Returns this Intervenants. |
||
2221 | */ |
||
2222 | public function setCodePostalRm(?string $codePostalRm): Intervenants { |
||
2226 | |||
2227 | /** |
||
2228 | * Set the code responsable. |
||
2229 | * |
||
2230 | * @param string|null $codeResponsable The code responsable. |
||
2231 | * @return Intervenants Returns this Intervenants. |
||
2232 | */ |
||
2233 | public function setCodeResponsable(?string $codeResponsable): Intervenants { |
||
2237 | |||
2238 | /** |
||
2239 | * Set the complement. |
||
2240 | * |
||
2241 | * @param string|null $complement The complement. |
||
2242 | * @return Intervenants Returns this Intervenants. |
||
2243 | */ |
||
2244 | public function setComplement(?string $complement): Intervenants { |
||
2248 | |||
2249 | /** |
||
2250 | * Set the complement2. |
||
2251 | * |
||
2252 | * @param string|null $complement2 The complement2. |
||
2253 | * @return Intervenants Returns this Intervenants. |
||
2254 | */ |
||
2255 | public function setComplement2(?string $complement2): Intervenants { |
||
2259 | |||
2260 | /** |
||
2261 | * Set the complement suite. |
||
2262 | * |
||
2263 | * @param string|null $complementSuite The complement suite. |
||
2264 | * @return Intervenants Returns this Intervenants. |
||
2265 | */ |
||
2266 | public function setComplementSuite(?string $complementSuite): Intervenants { |
||
2270 | |||
2271 | /** |
||
2272 | * Set the compteur liens. |
||
2273 | * |
||
2274 | * @param int|null $compteurLiens The compteur liens. |
||
2275 | * @return Intervenants Returns this Intervenants. |
||
2276 | */ |
||
2277 | public function setCompteurLiens(?int $compteurLiens): Intervenants { |
||
2281 | |||
2282 | /** |
||
2283 | * Set the contact. |
||
2284 | * |
||
2285 | * @param string|null $contact The contact. |
||
2286 | * @return Intervenants Returns this Intervenants. |
||
2287 | */ |
||
2288 | public function setContact(?string $contact): Intervenants { |
||
2292 | |||
2293 | /** |
||
2294 | * Set the creation societe. |
||
2295 | * |
||
2296 | * @param DateTime|null $creationSociete The creation societe. |
||
2297 | * @return Intervenants Returns this Intervenants. |
||
2298 | */ |
||
2299 | public function setCreationSociete(?DateTime $creationSociete): Intervenants { |
||
2303 | |||
2304 | /** |
||
2305 | * Set the date creat. |
||
2306 | * |
||
2307 | * @param DateTime|null $dateCreat The date creat. |
||
2308 | * @return Intervenants Returns this Intervenants. |
||
2309 | */ |
||
2310 | public function setDateCreat(?DateTime $dateCreat): Intervenants { |
||
2314 | |||
2315 | /** |
||
2316 | * Set the date deb activite. |
||
2317 | * |
||
2318 | * @param DateTime|null $dateDebActivite The date deb activite. |
||
2319 | * @return Intervenants Returns this Intervenants. |
||
2320 | */ |
||
2321 | public function setDateDebActivite(?DateTime $dateDebActivite): Intervenants { |
||
2325 | |||
2326 | /** |
||
2327 | * Set the date divorce. |
||
2328 | * |
||
2329 | * @param DateTime|null $dateDivorce The date divorce. |
||
2330 | * @return Intervenants Returns this Intervenants. |
||
2331 | */ |
||
2332 | public function setDateDivorce(?DateTime $dateDivorce): Intervenants { |
||
2336 | |||
2337 | /** |
||
2338 | * Set the date installation. |
||
2339 | * |
||
2340 | * @param DateTime|null $dateInstallation The date installation. |
||
2341 | * @return Intervenants Returns this Intervenants. |
||
2342 | */ |
||
2343 | public function setDateInstallation(?DateTime $dateInstallation): Intervenants { |
||
2347 | |||
2348 | /** |
||
2349 | * Set the date mariage. |
||
2350 | * |
||
2351 | * @param DateTime|null $dateMariage The date mariage. |
||
2352 | * @return Intervenants Returns this Intervenants. |
||
2353 | */ |
||
2354 | public function setDateMariage(?DateTime $dateMariage): Intervenants { |
||
2358 | |||
2359 | /** |
||
2360 | * Set the date modif. |
||
2361 | * |
||
2362 | * @param DateTime|null $dateModif The date modif. |
||
2363 | * @return Intervenants Returns this Intervenants. |
||
2364 | */ |
||
2365 | public function setDateModif(?DateTime $dateModif): Intervenants { |
||
2369 | |||
2370 | /** |
||
2371 | * Set the date naissance. |
||
2372 | * |
||
2373 | * @param DateTime|null $dateNaissance The date naissance. |
||
2374 | * @return Intervenants Returns this Intervenants. |
||
2375 | */ |
||
2376 | public function setDateNaissance(?DateTime $dateNaissance): Intervenants { |
||
2380 | |||
2381 | /** |
||
2382 | * Set the donnees appel. |
||
2383 | * |
||
2384 | * @param string|null $donneesAppel The donnees appel. |
||
2385 | * @return Intervenants Returns this Intervenants. |
||
2386 | */ |
||
2387 | public function setDonneesAppel(?string $donneesAppel): Intervenants { |
||
2391 | |||
2392 | /** |
||
2393 | * Set the droit collab visu documents. |
||
2394 | * |
||
2395 | * @param string|null $droitCollabVisuDocuments The droit collab visu documents. |
||
2396 | * @return Intervenants Returns this Intervenants. |
||
2397 | */ |
||
2398 | public function setDroitCollabVisuDocuments(?string $droitCollabVisuDocuments): Intervenants { |
||
2402 | |||
2403 | /** |
||
2404 | * Set the duree societe. |
||
2405 | * |
||
2406 | * @param string|null $dureeSociete The duree societe. |
||
2407 | * @return Intervenants Returns this Intervenants. |
||
2408 | */ |
||
2409 | public function setDureeSociete(?string $dureeSociete): Intervenants { |
||
2413 | |||
2414 | /** |
||
2415 | * Set the email. |
||
2416 | * |
||
2417 | * @param string|null $email The email. |
||
2418 | * @return Intervenants Returns this Intervenants. |
||
2419 | */ |
||
2420 | public function setEmail(?string $email): Intervenants { |
||
2424 | |||
2425 | /** |
||
2426 | * Set the email2. |
||
2427 | * |
||
2428 | * @param string|null $email2 The email2. |
||
2429 | * @return Intervenants Returns this Intervenants. |
||
2430 | */ |
||
2431 | public function setEmail2(?string $email2): Intervenants { |
||
2435 | |||
2436 | /** |
||
2437 | * Set the enseigne. |
||
2438 | * |
||
2439 | * @param string|null $enseigne The enseigne. |
||
2440 | * @return Intervenants Returns this Intervenants. |
||
2441 | */ |
||
2442 | public function setEnseigne(?string $enseigne): Intervenants { |
||
2446 | |||
2447 | /** |
||
2448 | * Set the fax. |
||
2449 | * |
||
2450 | * @param string|null $fax The fax. |
||
2451 | * @return Intervenants Returns this Intervenants. |
||
2452 | */ |
||
2453 | public function setFax(?string $fax): Intervenants { |
||
2457 | |||
2458 | /** |
||
2459 | * Set the fax2. |
||
2460 | * |
||
2461 | * @param string|null $fax2 The fax2. |
||
2462 | * @return Intervenants Returns this Intervenants. |
||
2463 | */ |
||
2464 | public function setFax2(?string $fax2): Intervenants { |
||
2468 | |||
2469 | /** |
||
2470 | * Set the frp cle. |
||
2471 | * |
||
2472 | * @param string|null $frpCle The frp cle. |
||
2473 | * @return Intervenants Returns this Intervenants. |
||
2474 | */ |
||
2475 | public function setFrpCle(?string $frpCle): Intervenants { |
||
2479 | |||
2480 | /** |
||
2481 | * Set the frp dossier. |
||
2482 | * |
||
2483 | * @param string|null $frpDossier The frp dossier. |
||
2484 | * @return Intervenants Returns this Intervenants. |
||
2485 | */ |
||
2486 | public function setFrpDossier(?string $frpDossier): Intervenants { |
||
2490 | |||
2491 | /** |
||
2492 | * Set the frp recette. |
||
2493 | * |
||
2494 | * @param string|null $frpRecette The frp recette. |
||
2495 | * @return Intervenants Returns this Intervenants. |
||
2496 | */ |
||
2497 | public function setFrpRecette(?string $frpRecette): Intervenants { |
||
2501 | |||
2502 | /** |
||
2503 | * Set the gest juri. |
||
2504 | * |
||
2505 | * @param bool|null $gestJuri The gest juri. |
||
2506 | * @return Intervenants Returns this Intervenants. |
||
2507 | */ |
||
2508 | public function setGestJuri(?bool $gestJuri): Intervenants { |
||
2512 | |||
2513 | /** |
||
2514 | * Set the iban. |
||
2515 | * |
||
2516 | * @param string|null $iban The iban. |
||
2517 | * @return Intervenants Returns this Intervenants. |
||
2518 | */ |
||
2519 | public function setIban(?string $iban): Intervenants { |
||
2523 | |||
2524 | /** |
||
2525 | * Set the ident tva. |
||
2526 | * |
||
2527 | * @param string|null $identTva The ident tva. |
||
2528 | * @return Intervenants Returns this Intervenants. |
||
2529 | */ |
||
2530 | public function setIdentTva(?string $identTva): Intervenants { |
||
2534 | |||
2535 | /** |
||
2536 | * Set the identifiant. |
||
2537 | * |
||
2538 | * @param string|null $identifiant The identifiant. |
||
2539 | * @return Intervenants Returns this Intervenants. |
||
2540 | */ |
||
2541 | public function setIdentifiant(?string $identifiant): Intervenants { |
||
2545 | |||
2546 | /** |
||
2547 | * Set the identifiant internet. |
||
2548 | * |
||
2549 | * @param string|null $identifiantInternet The identifiant internet. |
||
2550 | * @return Intervenants Returns this Intervenants. |
||
2551 | */ |
||
2552 | public function setIdentifiantInternet(?string $identifiantInternet): Intervenants { |
||
2556 | |||
2557 | /** |
||
2558 | * Set the inscription rc. |
||
2559 | * |
||
2560 | * @param DateTime|null $inscriptionRc The inscription rc. |
||
2561 | * @return Intervenants Returns this Intervenants. |
||
2562 | */ |
||
2563 | public function setInscriptionRc(?DateTime $inscriptionRc): Intervenants { |
||
2567 | |||
2568 | /** |
||
2569 | * Set the inscription rm. |
||
2570 | * |
||
2571 | * @param DateTime|null $inscriptionRm The inscription rm. |
||
2572 | * @return Intervenants Returns this Intervenants. |
||
2573 | */ |
||
2574 | public function setInscriptionRm(?DateTime $inscriptionRm): Intervenants { |
||
2578 | |||
2579 | /** |
||
2580 | * Set the is client. |
||
2581 | * |
||
2582 | * @param string|null $isClient The is client. |
||
2583 | * @return Intervenants Returns this Intervenants. |
||
2584 | */ |
||
2585 | public function setIsClient(?string $isClient): Intervenants { |
||
2589 | |||
2590 | /** |
||
2591 | * Set the is fournisseur. |
||
2592 | * |
||
2593 | * @param string|null $isFournisseur The is fournisseur. |
||
2594 | * @return Intervenants Returns this Intervenants. |
||
2595 | */ |
||
2596 | public function setIsFournisseur(?string $isFournisseur): Intervenants { |
||
2600 | |||
2601 | /** |
||
2602 | * Set the mdp internet. |
||
2603 | * |
||
2604 | * @param string|null $mdpInternet The mdp internet. |
||
2605 | * @return Intervenants Returns this Intervenants. |
||
2606 | */ |
||
2607 | public function setMdpInternet(?string $mdpInternet): Intervenants { |
||
2611 | |||
2612 | /** |
||
2613 | * Set the mission principale. |
||
2614 | * |
||
2615 | * @param string|null $missionPrincipale The mission principale. |
||
2616 | * @return Intervenants Returns this Intervenants. |
||
2617 | */ |
||
2618 | public function setMissionPrincipale(?string $missionPrincipale): Intervenants { |
||
2622 | |||
2623 | /** |
||
2624 | * Set the nationalite. |
||
2625 | * |
||
2626 | * @param string|null $nationalite The nationalite. |
||
2627 | * @return Intervenants Returns this Intervenants. |
||
2628 | */ |
||
2629 | public function setNationalite(?string $nationalite): Intervenants { |
||
2633 | |||
2634 | /** |
||
2635 | * Set the nb enfants. |
||
2636 | * |
||
2637 | * @param string|null $nbEnfants The nb enfants. |
||
2638 | * @return Intervenants Returns this Intervenants. |
||
2639 | */ |
||
2640 | public function setNbEnfants(?string $nbEnfants): Intervenants { |
||
2644 | |||
2645 | /** |
||
2646 | * Set the nb km. |
||
2647 | * |
||
2648 | * @param float|null $nbKm The nb km. |
||
2649 | * @return Intervenants Returns this Intervenants. |
||
2650 | */ |
||
2651 | public function setNbKm(?float $nbKm): Intervenants { |
||
2655 | |||
2656 | /** |
||
2657 | * Set the nie1. |
||
2658 | * |
||
2659 | * @param string|null $nie1 The nie1. |
||
2660 | * @return Intervenants Returns this Intervenants. |
||
2661 | */ |
||
2662 | public function setNie1(?string $nie1): Intervenants { |
||
2666 | |||
2667 | /** |
||
2668 | * Set the nie2. |
||
2669 | * |
||
2670 | * @param string|null $nie2 The nie2. |
||
2671 | * @return Intervenants Returns this Intervenants. |
||
2672 | */ |
||
2673 | public function setNie2(?string $nie2): Intervenants { |
||
2677 | |||
2678 | /** |
||
2679 | * Set the nir. |
||
2680 | * |
||
2681 | * @param string|null $nir The nir. |
||
2682 | * @return Intervenants Returns this Intervenants. |
||
2683 | */ |
||
2684 | public function setNir(?string $nir): Intervenants { |
||
2688 | |||
2689 | /** |
||
2690 | * Set the nom. |
||
2691 | * |
||
2692 | * @param string|null $nom The nom. |
||
2693 | * @return Intervenants Returns this Intervenants. |
||
2694 | */ |
||
2695 | public function setNom(?string $nom): Intervenants { |
||
2699 | |||
2700 | /** |
||
2701 | * Set the nom marital. |
||
2702 | * |
||
2703 | * @param string|null $nomMarital The nom marital. |
||
2704 | * @return Intervenants Returns this Intervenants. |
||
2705 | */ |
||
2706 | public function setNomMarital(?string $nomMarital): Intervenants { |
||
2710 | |||
2711 | /** |
||
2712 | * Set the nom mere. |
||
2713 | * |
||
2714 | * @param string|null $nomMere The nom mere. |
||
2715 | * @return Intervenants Returns this Intervenants. |
||
2716 | */ |
||
2717 | public function setNomMere(?string $nomMere): Intervenants { |
||
2721 | |||
2722 | /** |
||
2723 | * Set the nom pere. |
||
2724 | * |
||
2725 | * @param string|null $nomPere The nom pere. |
||
2726 | * @return Intervenants Returns this Intervenants. |
||
2727 | */ |
||
2728 | public function setNomPere(?string $nomPere): Intervenants { |
||
2732 | |||
2733 | /** |
||
2734 | * Set the nom suite. |
||
2735 | * |
||
2736 | * @param string|null $nomSuite The nom suite. |
||
2737 | * @return Intervenants Returns this Intervenants. |
||
2738 | */ |
||
2739 | public function setNomSuite(?string $nomSuite): Intervenants { |
||
2743 | |||
2744 | /** |
||
2745 | * Set the nom ville. |
||
2746 | * |
||
2747 | * @param string|null $nomVille The nom ville. |
||
2748 | * @return Intervenants Returns this Intervenants. |
||
2749 | */ |
||
2750 | public function setNomVille(?string $nomVille): Intervenants { |
||
2754 | |||
2755 | /** |
||
2756 | * Set the nom ville2. |
||
2757 | * |
||
2758 | * @param string|null $nomVille2 The nom ville2. |
||
2759 | * @return Intervenants Returns this Intervenants. |
||
2760 | */ |
||
2761 | public function setNomVille2(?string $nomVille2): Intervenants { |
||
2765 | |||
2766 | /** |
||
2767 | * Set the nom voie. |
||
2768 | * |
||
2769 | * @param string|null $nomVoie The nom voie. |
||
2770 | * @return Intervenants Returns this Intervenants. |
||
2771 | */ |
||
2772 | public function setNomVoie(?string $nomVoie): Intervenants { |
||
2776 | |||
2777 | /** |
||
2778 | * Set the nom voie2. |
||
2779 | * |
||
2780 | * @param string|null $nomVoie2 The nom voie2. |
||
2781 | * @return Intervenants Returns this Intervenants. |
||
2782 | */ |
||
2783 | public function setNomVoie2(?string $nomVoie2): Intervenants { |
||
2787 | |||
2788 | /** |
||
2789 | * Set the nombre actions. |
||
2790 | * |
||
2791 | * @param int|null $nombreActions The nombre actions. |
||
2792 | * @return Intervenants Returns this Intervenants. |
||
2793 | */ |
||
2794 | public function setNombreActions(?int $nombreActions): Intervenants { |
||
2798 | |||
2799 | /** |
||
2800 | * Set the num agrement cga. |
||
2801 | * |
||
2802 | * @param string|null $numAgrementCga The num agrement cga. |
||
2803 | * @return Intervenants Returns this Intervenants. |
||
2804 | */ |
||
2805 | public function setNumAgrementCga(?string $numAgrementCga): Intervenants { |
||
2809 | |||
2810 | /** |
||
2811 | * Set the num voie. |
||
2812 | * |
||
2813 | * @param string|null $numVoie The num voie. |
||
2814 | * @return Intervenants Returns this Intervenants. |
||
2815 | */ |
||
2816 | public function setNumVoie(?string $numVoie): Intervenants { |
||
2820 | |||
2821 | /** |
||
2822 | * Set the num voie2. |
||
2823 | * |
||
2824 | * @param string|null $numVoie2 The num voie2. |
||
2825 | * @return Intervenants Returns this Intervenants. |
||
2826 | */ |
||
2827 | public function setNumVoie2(?string $numVoie2): Intervenants { |
||
2831 | |||
2832 | /** |
||
2833 | * Set the pays. |
||
2834 | * |
||
2835 | * @param string|null $pays The pays. |
||
2836 | * @return Intervenants Returns this Intervenants. |
||
2837 | */ |
||
2838 | public function setPays(?string $pays): Intervenants { |
||
2842 | |||
2843 | /** |
||
2844 | * Set the pays naissance. |
||
2845 | * |
||
2846 | * @param string|null $paysNaissance The pays naissance. |
||
2847 | * @return Intervenants Returns this Intervenants. |
||
2848 | */ |
||
2849 | public function setPaysNaissance(?string $paysNaissance): Intervenants { |
||
2853 | |||
2854 | /** |
||
2855 | * Set the personne physique. |
||
2856 | * |
||
2857 | * @param bool|null $personnePhysique The personne physique. |
||
2858 | * @return Intervenants Returns this Intervenants. |
||
2859 | */ |
||
2860 | public function setPersonnePhysique(?bool $personnePhysique): Intervenants { |
||
2864 | |||
2865 | /** |
||
2866 | * Set the portable1. |
||
2867 | * |
||
2868 | * @param string|null $portable1 The portable1. |
||
2869 | * @return Intervenants Returns this Intervenants. |
||
2870 | */ |
||
2871 | public function setPortable1(?string $portable1): Intervenants { |
||
2875 | |||
2876 | /** |
||
2877 | * Set the portable12. |
||
2878 | * |
||
2879 | * @param string|null $portable12 The portable12. |
||
2880 | * @return Intervenants Returns this Intervenants. |
||
2881 | */ |
||
2882 | public function setPortable12(?string $portable12): Intervenants { |
||
2886 | |||
2887 | /** |
||
2888 | * Set the portable2. |
||
2889 | * |
||
2890 | * @param string|null $portable2 The portable2. |
||
2891 | * @return Intervenants Returns this Intervenants. |
||
2892 | */ |
||
2893 | public function setPortable2(?string $portable2): Intervenants { |
||
2897 | |||
2898 | /** |
||
2899 | * Set the portable22. |
||
2900 | * |
||
2901 | * @param string|null $portable22 The portable22. |
||
2902 | * @return Intervenants Returns this Intervenants. |
||
2903 | */ |
||
2904 | public function setPortable22(?string $portable22): Intervenants { |
||
2908 | |||
2909 | /** |
||
2910 | * Set the prenom. |
||
2911 | * |
||
2912 | * @param string|null $prenom The prenom. |
||
2913 | * @return Intervenants Returns this Intervenants. |
||
2914 | */ |
||
2915 | public function setPrenom(?string $prenom): Intervenants { |
||
2919 | |||
2920 | /** |
||
2921 | * Set the qualite. |
||
2922 | * |
||
2923 | * @param string|null $qualite The qualite. |
||
2924 | * @return Intervenants Returns this Intervenants. |
||
2925 | */ |
||
2926 | public function setQualite(?string $qualite): Intervenants { |
||
2930 | |||
2931 | /** |
||
2932 | * Set the rc. |
||
2933 | * |
||
2934 | * @param string|null $rc The rc. |
||
2935 | * @return Intervenants Returns this Intervenants. |
||
2936 | */ |
||
2937 | public function setRc(?string $rc): Intervenants { |
||
2941 | |||
2942 | /** |
||
2943 | * Set the rc code. |
||
2944 | * |
||
2945 | * @param string|null $rcCode The rc code. |
||
2946 | * @return Intervenants Returns this Intervenants. |
||
2947 | */ |
||
2948 | public function setRcCode(?string $rcCode): Intervenants { |
||
2952 | |||
2953 | /** |
||
2954 | * Set the regime matrimonial. |
||
2955 | * |
||
2956 | * @param string|null $regimeMatrimonial The regime matrimonial. |
||
2957 | * @return Intervenants Returns this Intervenants. |
||
2958 | */ |
||
2959 | public function setRegimeMatrimonial(?string $regimeMatrimonial): Intervenants { |
||
2963 | |||
2964 | /** |
||
2965 | * Set the regime matrimoniale. |
||
2966 | * |
||
2967 | * @param string|null $regimeMatrimoniale The regime matrimoniale. |
||
2968 | * @return Intervenants Returns this Intervenants. |
||
2969 | */ |
||
2970 | public function setRegimeMatrimoniale(?string $regimeMatrimoniale): Intervenants { |
||
2974 | |||
2975 | /** |
||
2976 | * Set the rib. |
||
2977 | * |
||
2978 | * @param string|null $rib The rib. |
||
2979 | * @return Intervenants Returns this Intervenants. |
||
2980 | */ |
||
2981 | public function setRib(?string $rib): Intervenants { |
||
2985 | |||
2986 | /** |
||
2987 | * Set the rm. |
||
2988 | * |
||
2989 | * @param string|null $rm The rm. |
||
2990 | * @return Intervenants Returns this Intervenants. |
||
2991 | */ |
||
2992 | public function setRm(?string $rm): Intervenants { |
||
2996 | |||
2997 | /** |
||
2998 | * Set the rm code. |
||
2999 | * |
||
3000 | * @param string|null $rmCode The rm code. |
||
3001 | * @return Intervenants Returns this Intervenants. |
||
3002 | */ |
||
3003 | public function setRmCode(?string $rmCode): Intervenants { |
||
3007 | |||
3008 | /** |
||
3009 | * Set the salarie independant. |
||
3010 | * |
||
3011 | * @param string|null $salarieIndependant The salarie independant. |
||
3012 | * @return Intervenants Returns this Intervenants. |
||
3013 | */ |
||
3014 | public function setSalarieIndependant(?string $salarieIndependant): Intervenants { |
||
3018 | |||
3019 | /** |
||
3020 | * Set the siret. |
||
3021 | * |
||
3022 | * @param string|null $siret The siret. |
||
3023 | * @return Intervenants Returns this Intervenants. |
||
3024 | */ |
||
3025 | public function setSiret(?string $siret): Intervenants { |
||
3029 | |||
3030 | /** |
||
3031 | * Set the situation fam. |
||
3032 | * |
||
3033 | * @param string|null $situationFam The situation fam. |
||
3034 | * @return Intervenants Returns this Intervenants. |
||
3035 | */ |
||
3036 | public function setSituationFam(?string $situationFam): Intervenants { |
||
3040 | |||
3041 | /** |
||
3042 | * Set the tel1. |
||
3043 | * |
||
3044 | * @param string|null $tel1 The tel1. |
||
3045 | * @return Intervenants Returns this Intervenants. |
||
3046 | */ |
||
3047 | public function setTel1(?string $tel1): Intervenants { |
||
3051 | |||
3052 | /** |
||
3053 | * Set the tel12. |
||
3054 | * |
||
3055 | * @param string|null $tel12 The tel12. |
||
3056 | * @return Intervenants Returns this Intervenants. |
||
3057 | */ |
||
3058 | public function setTel12(?string $tel12): Intervenants { |
||
3062 | |||
3063 | /** |
||
3064 | * Set the tel2. |
||
3065 | * |
||
3066 | * @param string|null $tel2 The tel2. |
||
3067 | * @return Intervenants Returns this Intervenants. |
||
3068 | */ |
||
3069 | public function setTel2(?string $tel2): Intervenants { |
||
3073 | |||
3074 | /** |
||
3075 | * Set the tel22. |
||
3076 | * |
||
3077 | * @param string|null $tel22 The tel22. |
||
3078 | * @return Intervenants Returns this Intervenants. |
||
3079 | */ |
||
3080 | public function setTel22(?string $tel22): Intervenants { |
||
3084 | |||
3085 | /** |
||
3086 | * Set the tel voiture. |
||
3087 | * |
||
3088 | * @param string|null $telVoiture The tel voiture. |
||
3089 | * @return Intervenants Returns this Intervenants. |
||
3090 | */ |
||
3091 | public function setTelVoiture(?string $telVoiture): Intervenants { |
||
3095 | |||
3096 | /** |
||
3097 | * Set the tel voiture2. |
||
3098 | * |
||
3099 | * @param string|null $telVoiture2 The tel voiture2. |
||
3100 | * @return Intervenants Returns this Intervenants. |
||
3101 | */ |
||
3102 | public function setTelVoiture2(?string $telVoiture2): Intervenants { |
||
3106 | |||
3107 | /** |
||
3108 | * Set the telex. |
||
3109 | * |
||
3110 | * @param string|null $telex The telex. |
||
3111 | * @return Intervenants Returns this Intervenants. |
||
3112 | */ |
||
3113 | public function setTelex(?string $telex): Intervenants { |
||
3117 | |||
3118 | /** |
||
3119 | * Set the telex2. |
||
3120 | * |
||
3121 | * @param string|null $telex2 The telex2. |
||
3122 | * @return Intervenants Returns this Intervenants. |
||
3123 | */ |
||
3124 | public function setTelex2(?string $telex2): Intervenants { |
||
3128 | |||
3129 | /** |
||
3130 | * Set the travail a domicile. |
||
3131 | * |
||
3132 | * @param bool|null $travailADomicile The travail a domicile. |
||
3133 | * @return Intervenants Returns this Intervenants. |
||
3134 | */ |
||
3135 | public function setTravailADomicile(?bool $travailADomicile): Intervenants { |
||
3139 | |||
3140 | /** |
||
3141 | * Set the type. |
||
3142 | * |
||
3143 | * @param string|null $type The type. |
||
3144 | * @return Intervenants Returns this Intervenants. |
||
3145 | */ |
||
3146 | public function setType(?string $type): Intervenants { |
||
3150 | |||
3151 | /** |
||
3152 | * Set the type societe. |
||
3153 | * |
||
3154 | * @param string|null $typeSociete The type societe. |
||
3155 | * @return Intervenants Returns this Intervenants. |
||
3156 | */ |
||
3157 | public function setTypeSociete(?string $typeSociete): Intervenants { |
||
3161 | |||
3162 | /** |
||
3163 | * Set the ville mariage. |
||
3164 | * |
||
3165 | * @param string|null $villeMariage The ville mariage. |
||
3166 | * @return Intervenants Returns this Intervenants. |
||
3167 | */ |
||
3168 | public function setVilleMariage(?string $villeMariage): Intervenants { |
||
3172 | |||
3173 | /** |
||
3174 | * Set the ville naissance. |
||
3175 | * |
||
3176 | * @param string|null $villeNaissance The ville naissance. |
||
3177 | * @return Intervenants Returns this Intervenants. |
||
3178 | */ |
||
3179 | public function setVilleNaissance(?string $villeNaissance): Intervenants { |
||
3183 | |||
3184 | /** |
||
3185 | * Set the ville rc. |
||
3186 | * |
||
3187 | * @param string|null $villeRc The ville rc. |
||
3188 | * @return Intervenants Returns this Intervenants. |
||
3189 | */ |
||
3190 | public function setVilleRc(?string $villeRc): Intervenants { |
||
3194 | |||
3195 | /** |
||
3196 | * Set the ville rm. |
||
3197 | * |
||
3198 | * @param string|null $villeRm The ville rm. |
||
3199 | * @return Intervenants Returns this Intervenants. |
||
3200 | */ |
||
3201 | public function setVilleRm(?string $villeRm): Intervenants { |
||
3205 | |||
3206 | /** |
||
3207 | * Set the zip code. |
||
3208 | * |
||
3209 | * @param string|null $zipCode The zip code. |
||
3210 | * @return Intervenants Returns this Intervenants. |
||
3211 | */ |
||
3212 | public function setZipCode(?string $zipCode): Intervenants { |
||
3216 | } |
||
3217 |