src/Entity/TerPersona.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TerPersonaRepository;
  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(repositoryClassTerPersonaRepository::class)]
  9. class TerPersona {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  15.     private ?\DateTimeInterface $fechaDiligenciamiento null;
  16.     #[ORM\Column(length10nullabletrue)]
  17.     private ?string $grupoSanguineoRH null;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?int $estrato null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $fotografia null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $universidad null;
  24.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  25.     private ?string $queHaceTiempoLibre null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $cualExequial null;
  28.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  29.     private ?string $cualDeporte null;
  30.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  31.     private ?string $cualEnfermedad null;
  32.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  33.     private ?string $cualesActiviSalud null;
  34.     #[ORM\Column(length50nullabletrue)]
  35.     private ?string $promedioDiario null;
  36.     #[ORM\Column(length255nullabletrue)]
  37.     private ?string $firmaLarga null;
  38.     #[ORM\Column(length255nullabletrue)]
  39.     private ?string $firmaCorta null;
  40.     #[ORM\Column(length255nullabletrue)]
  41.     private ?string $indiceIzquierdo null;
  42.     #[ORM\Column(length255nullabletrue)]
  43.     private ?string $indiceDerecho null;
  44.     #[ORM\OneToMany(mappedBy'personaAprueba'targetEntityGHVacante::class)]
  45.     private Collection $personaApruebaVacante;
  46.     #[ORM\OneToMany(mappedBy'personaSolicita'targetEntityGHVacante::class)]
  47.     private Collection $personaSolicitaVacante;
  48.     #[ORM\ManyToOne(inversedBy'persona')]
  49.     private ?ParEstado $estado null;
  50.     #[ORM\OneToMany(mappedBy'jefePersonaId'targetEntityGHEntrevistaJefe::class)]
  51.     private Collection $idJefePersona;
  52.     #[ORM\ManyToOne(inversedBy'persona')]
  53.     private ?GHPerfilCargo $perfilCargo null;
  54.     #[ORM\Column(length255)]
  55.     private ?string $nombres null;
  56.     #[ORM\ManyToOne(inversedBy'persona')]
  57.     private ?ParTipoDocumento $tipoDocumento null;
  58.     #[ORM\Column(length50)]
  59.     private ?string $numeroDocumento null;
  60.     #[ORM\Column(typeTypes::DATE_MUTABLE,nullable:true)]
  61.     private ?\DateTimeInterface $fechaNacimiento null;
  62.     #[ORM\Column(nullable:true)]
  63.     private ?int $edad null;
  64.     #[ORM\ManyToOne(inversedBy'persona')]
  65.     private ?ParEstadoCivil $estadoCivil null;
  66.     #[ORM\Column(length255)]
  67.     private ?string $direccion null;
  68.     #[ORM\Column(length255nullabletrue)]
  69.     private ?string $barrio null;
  70.     #[ORM\Column(length255nullabletrue)]
  71.     private ?string $localidad null;
  72.     #[ORM\ManyToOne(inversedBy'persona')]
  73.     private ?ParTenenciaResidencia $tenenciaResidencia null;
  74.     #[ORM\ManyToOne(inversedBy'persona')]
  75.     private ?ParTipoVivienda $tipoVivienda null;
  76.     #[ORM\Column(length255nullable :true)]
  77.     private ?string $email null;
  78.     #[ORM\Column(length15nullabletrue)]
  79.     private ?string $celular null;
  80.     #[ORM\Column(length15nullabletrue)]
  81.     private ?string $telefonoFijo null;
  82.     #[ORM\ManyToOne(inversedBy'persona')]
  83.     private ?ParNivelEducativo $nivelEducativo null;
  84.     #[ORM\Column(length255nullabletrue)]
  85.     private ?string $nombreCarrera null;
  86.     #[ORM\Column(nullabletrue)]
  87.     private ?bool $estudiaActual null;
  88.     #[ORM\Column(length100nullabletrue)]
  89.     private ?string $horario null;
  90.     #[ORM\ManyToOne(inversedBy'personaIngles')]
  91.     private ?ParHabilidad $nivelIngles null;
  92.     #[ORM\ManyToOne(inversedBy'persona')]
  93.     private ?ParEPS $EPS null;
  94.     #[ORM\ManyToOne(inversedBy'persona')]
  95.     private ?ParFondoPension $fondoPension null;
  96.     #[ORM\ManyToOne(inversedBy'persona')]
  97.     private ?ParFondoCesantias $fondoCesantias null;
  98.     #[ORM\ManyToOne(inversedBy'persona')]
  99.     private ?ParCajaCompensacion $cajaCompensacion null;
  100.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  101.     private ?string $diagnosticoEnfermedad null;
  102.     #[ORM\Column(nullabletrue)]
  103.     private ?bool $usoAlcohol null;
  104.     #[ORM\Column(nullabletrue)]
  105.     private ?bool $usoCigarrillo null;
  106.     #[ORM\ManyToMany(targetEntityParSintomas::class, inversedBy'persona')]
  107.     private Collection $sintomas;
  108.     #[ORM\Column(nullabletrue)]
  109.     private ?int $numeroHijos null;
  110.     #[ORM\OneToMany(mappedBy'persona'targetEntityTerContactoPersona::class)]
  111.     private Collection $contactoPersona;
  112.     #[ORM\Column]
  113.     private ?\DateTime $createAt null;
  114.     #[ORM\Column]
  115.     private ?\DateTime $updateAt null;
  116.     #[ORM\Column(length55)]
  117.     private ?string $createUser null;
  118.     #[ORM\Column(length55)]
  119.     private ?string $updateUser null;
  120.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHInduccion::class)]
  121.     private Collection $induccion;
  122.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHEntrenamiento::class)]
  123.     private Collection $entrenamiento;
  124.     #[ORM\OneToMany(mappedBy'responsableEntrenamiento'targetEntityGHEntrenamiento::class)]
  125.     private Collection $responsableEntrenamiento;
  126.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHPeriodoPrueba::class)]
  127.     private Collection $periodoPrueba;
  128.     #[ORM\OneToMany(mappedBy'jefeInmediato'targetEntityGHPeriodoPrueba::class)]
  129.     private Collection $periodoPruebaJefeInm;
  130.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHRegistroInscripcion::class)]
  131.     private Collection $registroInscripcion;
  132.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHRetiroCesantias::class)]
  133.     private Collection $retiroCesantias;
  134.     #[ORM\ManyToMany(targetEntityParNivelCargo::class, inversedBy'persona')]
  135.     private Collection $nivelCargo;
  136.     #[ORM\OneToMany(mappedBy'personaAprueba'targetEntityGHPerfilCargo::class)]
  137.     private Collection $perfilCargoAprueba;
  138.     #[ORM\OneToMany(mappedBy'jefeInmediato'targetEntityGHPerfilCargo::class)]
  139.     private Collection $perfilCargoJefe;
  140.     #[ORM\OneToMany(mappedBy'personaAutoriza'targetEntityGHExamenPeriodico::class)]
  141.     private Collection $examenPeriodico;
  142.     #[ORM\OneToMany(mappedBy'personaAutoriza'targetEntityGHVisitaPeriodica::class)]
  143.     private Collection $visitaPeriodica;
  144.     #[ORM\OneToMany(mappedBy'director'targetEntityGHGrupoTrabajo::class)]
  145.     private Collection $grupoTrabajoJefe;
  146.     #[ORM\OneToMany(mappedBy'coordinador'targetEntityGHGrupoTrabajo::class)]
  147.     private Collection $grupoTrabajoCoordinador;
  148.     #[ORM\ManyToMany(targetEntityGHGrupoTrabajo::class, mappedBy'colaboradores')]
  149.     private Collection $grupoTrabajoColaboradores;
  150.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHExamenPeriodico::class)]
  151.     private Collection $examenPeriodicoPersona;
  152.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHVisitaPeriodica::class)]
  153.     private Collection $visitaPeriodicaPersona;
  154.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHProcesoDisciplinario::class)]
  155.     private Collection $procesoDisciplinarioPersona;
  156.     #[ORM\OneToMany(mappedBy'personaSolicita'targetEntityGHProcesoDisciplinario::class)]
  157.     private Collection $procesoDisciplinarioSolicita;
  158.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHNovedadNomina::class)]
  159.     private Collection $novedadNomina;
  160.     #[ORM\OneToMany(mappedBy'personaSolicita'targetEntityGHNovedadNomina::class)]
  161.     private Collection $novedadNominaSolicita;
  162.     #[ORM\OneToMany(mappedBy'jefeInmediato'targetEntityGHNovedadNomina::class)]
  163.     private Collection $novedadNominaJefe;
  164.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHDesvinculacion::class)]
  165.     private Collection $desvinculacion;
  166.     #[ORM\OneToMany(mappedBy'persona'targetEntityJurRegistroCumplimiento::class)]
  167.     private Collection $registroCumplimiento;
  168.     #[ORM\OneToMany(mappedBy'colaborador'targetEntityGHCambioContrato::class)]
  169.     private Collection $cambioContrato;
  170.     #[ORM\OneToMany(mappedBy'usuarioSolicita'targetEntityGHCambioContrato::class)]
  171.     private Collection $solicitaCambioContrato;
  172.     #[ORM\OneToMany(mappedBy'personaRecibe'targetEntityRFPaquete::class)]
  173.     private Collection $paqueteRecepciona;
  174.     #[ORM\OneToMany(mappedBy'personaDestinatario'targetEntityRFPaquete::class)]
  175.     private Collection $paqueteDestinatario;
  176.     #[ORM\OneToMany(mappedBy'personaReclama'targetEntityRFPaquete::class)]
  177.     private Collection $paqueteReclama;
  178.     #[ORM\OneToMany(mappedBy'personaEntrega'targetEntityRFPaquete::class)]
  179.     private Collection $paqueteEntrega;
  180.     #[ORM\OneToMany(mappedBy'personaSolicita'targetEntityRFDiligencia::class)]
  181.     private Collection $solicitaDiligencia;
  182.     #[ORM\OneToMany(mappedBy'auxiliarComex'targetEntityRFDiligencia::class)]
  183.     private Collection $diligenciaComex;
  184.     #[ORM\OneToMany(mappedBy'usuarioAutoriza'targetEntityRFDiligencia::class)]
  185.     private Collection $autorizaDiligencia;
  186.     #[ORM\OneToMany(mappedBy'mensajero'targetEntityRFDiligencia::class)]
  187.     private Collection $diligenciaAsignada;
  188.     #[ORM\OneToMany(mappedBy'autorizaCancelacion'targetEntityRFDiligencia::class)]
  189.     private Collection $cancelaDiligencia;
  190.     #[ORM\OneToMany(mappedBy'remitente'targetEntityRFEnvioCorrespondencia::class)]
  191.     private Collection $remitenteCorrespondencia;
  192.     #[ORM\OneToMany(mappedBy'usuarioGeneraGuia'targetEntityRFEnvioCorrespondencia::class)]
  193.     private Collection $guiaEnvioCorrespondencia;
  194.     #[ORM\OneToMany(mappedBy'usuarioSolicita'targetEntityRFSolicitudSuministro::class)]
  195.     private Collection $solicitudSuministro;
  196.     #[ORM\OneToMany(mappedBy'usuarioRecibe'targetEntityRFSolicitudSuministro::class)]
  197.     private Collection $recibeSolicitudSuministro;
  198.     #[ORM\ManyToOne(inversedBy'persona')]
  199.     private ?TerSedeEmpresa $sede null;
  200.     #[ORM\OneToMany(mappedBy'usuarioResponsable'targetEntityRFFUID::class)]
  201.     private Collection $responsableFUID;
  202.     #[ORM\OneToMany(mappedBy'persona'targetEntityRFInventarioDocumentalGesHum::class)]
  203.     private Collection $inventarioDocumentalGesHum;
  204.     #[ORM\OneToMany(mappedBy'usuarioRecibe'targetEntityRFFUID::class)]
  205.     private Collection $usuarioRecibeFUID;
  206.     #[ORM\OneToMany(mappedBy'usuarioElabora'targetEntityRFFUID::class)]
  207.     private Collection $usuarioElaboraFUID;
  208.     #[ORM\OneToMany(mappedBy'usuarioSolicita'targetEntityRFSolicitudDocumento::class)]
  209.     private Collection $generaSolicitudDocumento;
  210.     #[ORM\OneToMany(mappedBy'usuarioAtiende'targetEntityRFSolicitudDocumento::class)]
  211.     private Collection $atiendeSolicitudDocumento;
  212.     #[ORM\OneToMany(mappedBy'usuarioRecibe'targetEntityRFSolicitudDocumento::class)]
  213.     private Collection $recibeSolicitudDocumento;
  214.     #[ORM\OneToMany(mappedBy'nuevoUsuarioResponsable'targetEntityRFCambioCustodiaDocumento::class)]
  215.     private Collection $responsableCambioCustodia;
  216.     #[ORM\OneToMany(mappedBy'usuarioSolicita'targetEntityRFProrrogaSolicitudDocumento::class)]
  217.     private Collection $solicitaProrrogaSolicitudDocumento;
  218.     #[ORM\OneToMany(mappedBy'usuarioSolicita'targetEntityRFCambioCustodiaDocumento::class)]
  219.     private Collection $solicitaCambioCustodiaDocumento;
  220.     #[ORM\OneToMany(mappedBy'usuarioEntrega'targetEntityRFSolicitudDocumento::class)]
  221.     private Collection $entregaSolicitudDocumento;
  222.     #[ORM\OneToMany(mappedBy'usuarioConfirmaDevolucion'targetEntityRFSolicitudDocumento::class)]
  223.     private Collection $confirmaEntregaSolicitudDocumento;
  224.     #[ORM\OneToMany(mappedBy'usuarioDevoluciona'targetEntityRFSolicitudDocumento::class)]
  225.     private Collection $devolucionaSolicitudDocumento;
  226.     #[ORM\OneToMany(mappedBy'responsable'targetEntityGHInduccionProceso::class)]
  227.     private Collection $induccionProcesos;
  228.     #[ORM\OneToMany(mappedBy'solicitante'targetEntityGHRegistroInscripcion::class)]
  229.     private Collection $registroInscripcionSolicitante;
  230.     #[ORM\OneToMany(mappedBy'responsable'targetEntityGHEntrenamientoProceso::class)]
  231.     private Collection $entrenamientoProcesos;
  232.     #[ORM\OneToMany(mappedBy'colaboradorNotificacion'targetEntityGHExamenPeriodico::class)]
  233.     private Collection $examenPeriodicoNotificacion;
  234.     #[ORM\OneToMany(mappedBy'colaboradorNotificacion'targetEntityGHVisitaPeriodica::class)]
  235.     private Collection $visitaPeriodicaNotificacion;
  236.     #[ORM\OneToMany(mappedBy'personaRecibe'targetEntityGHDesvinculacion::class)]
  237.     private Collection $recibeProcesoDesvinculacion;
  238.     #[ORM\OneToMany(mappedBy'personDiligencia'targetEntityGHEntrevistaRetiro::class)]
  239.     private Collection $entrevistaRetiroDiligencia;
  240.     #[ORM\OneToMany(mappedBy'solicitante'targetEntitySegControlAcceso::class)]
  241.     private Collection $solicitaControlAcceso;
  242.     #[ORM\ManyToMany(targetEntitySegControlAcceso::class, mappedBy'personalIngresa')]
  243.     private Collection $controlAccesoIngreso;
  244.     #[ORM\OneToMany(mappedBy'usuarioAtiende'targetEntitySegIngresoVisitante::class)]
  245.     private Collection $atiendeIngresoVisitante;
  246.     #[ORM\OneToMany(mappedBy'solicitante'targetEntitySegSolicitudCCTV::class)]
  247.     private Collection $solicitanteCCTV;
  248.     #[ORM\OneToMany(mappedBy'autorizaRetiro'targetEntitySegSalidaMuestra::class)]
  249.     private Collection $autorizaSalidaMuestra;
  250.     #[ORM\OneToMany(mappedBy'usuario'targetEntitySegHomeOffice::class)]
  251.     private Collection $homeOffice;
  252.     #[ORM\OneToMany(mappedBy'usuarioSolicita'targetEntitySegIngresoVisitante::class)]
  253.     private Collection $solicitaIngresoVisitante;
  254.     #[ORM\OneToMany(mappedBy'responsableCustodia'targetEntityRFPrecinto::class)]
  255.     private Collection $precintosCustodia;
  256.     #[ORM\OneToMany(mappedBy'solicitante'targetEntityRFPrecintoSolicitud::class)]
  257.     private Collection $solicitantePrecintos;
  258.     #[ORM\OneToMany(mappedBy'coordinador'targetEntityRFPrecintoAsignacion::class)]
  259.     private Collection $precintoAsignacion;
  260.     #[ORM\OneToMany(mappedBy'usuarioEntrega'targetEntityRFPrecintoAsignacion::class)]
  261.     private Collection $entregaPrecintoAsignado;
  262.     #[ORM\OneToMany(mappedBy'usuarioRecibe'targetEntityRFPrecintoAsignacion::class)]
  263.     private Collection $recibePrecintoAsignado;
  264.     #[ORM\OneToMany(mappedBy'usuarioEntrega'targetEntityRFPrecintoRegistro::class)]
  265.     private Collection $entregaPrecintoRegistro;
  266.     #[ORM\OneToMany(mappedBy'usuarioInstala'targetEntityRFPrecintoRegistro::class)]
  267.     private Collection $instalaPrecintoRegistro;
  268.     #[ORM\OneToMany(mappedBy'solicitante'targetEntityRFSolicitudCompra::class)]
  269.     private Collection $solicitudesCompra;
  270.     #[ORM\OneToMany(mappedBy'usuarioAprobacion'targetEntityRFSolicitudCompra::class)]
  271.     private Collection $aprobacionSolicitudCompra;
  272.     #[ORM\OneToMany(mappedBy'solicitante'targetEntityRFOrdenCompra::class)]
  273.     private Collection $solicitanteOrdenCompra;
  274.     #[ORM\OneToMany(mappedBy'usuarioRecursoFisico'targetEntityRFRembolsoCajaMenor::class)]
  275.     private Collection $RFRembolsoCajaMenor;
  276.     #[ORM\OneToMany(mappedBy'usuarioFinanzas'targetEntityRFRembolsoCajaMenor::class)]
  277.     private Collection $finanzaRembolsoCajaMenor;
  278.     #[ORM\OneToMany(mappedBy'beneficiario'targetEntityRFRembolsoCajaMenorItem::class)]
  279.     private Collection $beneficiarioRembolsoCajaMenorItem;
  280.     #[ORM\OneToMany(mappedBy'aprobado'targetEntityRFRembolsoCajaMenorItem::class)]
  281.     private Collection $aprobadoRembolsoCajaMenorItem;
  282.     #[ORM\ManyToMany(targetEntityRFDisposicionProveedor::class, mappedBy'director')]
  283.     private Collection $disposicionProveedorDirector;
  284.     #[ORM\OneToMany(mappedBy'colaborador'targetEntitySecMensaje::class)]
  285.     private Collection $mensajes;
  286.     #[ORM\OneToMany(mappedBy'remitente'targetEntitySecMensaje::class)]
  287.     private Collection $remitenteMensaje;
  288.     #[ORM\ManyToMany(targetEntityParHorario::class, mappedBy'usuario')]
  289.     private Collection $horarios;
  290.     #[ORM\OneToMany(mappedBy'autorizadoPor'targetEntityGHNovedadNomina::class)]
  291.     private Collection $novedadNominaAutorizadas;
  292.     #[ORM\OneToMany(mappedBy'persona'targetEntityParCuestionarioAsignacion::class)]
  293.     private Collection $cuestionarioAsignaciones;
  294.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHReentrenamiento::class)]
  295.     private Collection $reentrenamientos;
  296.     #[ORM\OneToMany(mappedBy'responsable'targetEntityGHCapacitacionActividad::class)]
  297.     private Collection $responsableCapacitacionActividades;
  298.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHRegistroOpain::class)]
  299.     private Collection $registrosOpain;
  300.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHVerificacionAntecedentePersona::class)]
  301.     private Collection $verificacionAntecedentesPersona;
  302.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHEvaluacionDesempenoPersona::class)]
  303.     private Collection $evaluacionesDesempenoPersona;
  304.     #[ORM\OneToMany(mappedBy'JefeInmediatoC'targetEntityGHContratacion::class)]
  305.     private Collection $condicionesContratacionJefeInm;
  306.     #[ORM\OneToMany(mappedBy'Aprobador'targetEntityGHContratacion::class)]
  307.     private Collection $condicionesContratacionAprobador;
  308.     #[ORM\Column(type'boolean'options: ['default' => false])]
  309.     private bool $notificadoCienDias false;
  310.     #[ORM\OneToMany(mappedBy'persona'targetEntityTerPersonaHistorial::class)]
  311.     #[ORM\OrderBy(['id' => 'DESC'])]
  312.     private Collection $historialesPerso;
  313.     #[ORM\OneToMany(mappedBy'autorizadoPorLicencia'targetEntityGHNovedadNomina::class)]
  314.     private Collection $novedadNominaPSL;
  315.     #[ORM\OneToMany(mappedBy'BeneficioVacaciones'targetEntityGHNovedadNomina::class)]
  316.     private Collection $novedadNominaBeneficioV;
  317.     #[ORM\OneToMany(mappedBy'responsableEntrevista'targetEntityGHEntrevistaJefe::class)]
  318.     private Collection $entrevistaJefe;
  319.     #[ORM\OneToMany(mappedBy'cargoAprueba'targetEntityGHPerfilCargo::class)]
  320.     private Collection $perfilApruebaCargo;
  321.     #[ORM\OneToMany(mappedBy'colaborador'targetEntityGHGestionTurno::class)]
  322.     private Collection $gestionTurno;
  323.     #[ORM\OneToMany(mappedBy'autorizadoPorAux'targetEntityGHNovedadNomina::class)]
  324.     private Collection $novedadNominaAux;
  325.     #[ORM\OneToMany(mappedBy'autorizadoPorBon'targetEntityGHNovedadNomina::class)]
  326.     private Collection $novedadNominaBon;
  327.     #[ORM\Column(nullabletrue)]
  328.     private ?bool $noti1anio null;
  329.     #[ORM\OneToMany(mappedBy'responsableInterno'targetEntityComVisitaComercialCompromisos::class)]
  330.     private Collection $comVisitaComercialCompromisos;
  331.     #[ORM\OneToMany(mappedBy'terPersona'targetEntityComOfertaComercial::class)]
  332.     private Collection $comOfertaComercial;
  333.     #[ORM\Column(nullabletrue)]
  334.     private ?bool $personaCliente null;
  335.     #[ORM\ManyToMany(targetEntityComHojaVida::class, mappedBy'usuariosNotificar')]
  336.     private Collection $comHojaVidas;
  337.     #[ORM\OneToMany(mappedBy'jefeAduana'targetEntityComAsignarComex::class)]
  338.     private Collection $comAsignarComex;
  339.     #[ORM\OneToMany(mappedBy'ejecutivoCuenta'targetEntityComAsignarComex::class)]
  340.     private Collection $comAsignarComexEjecutivo;
  341.     #[ORM\ManyToMany(targetEntityComImportaciones::class, mappedBy'colaborador')]
  342.     private Collection $comImportaciones;
  343.     #[ORM\ManyToMany(targetEntityComComex::class, mappedBy'colaborador')]
  344.     private Collection $comComex;
  345.     #[ORM\ManyToMany(targetEntityComOperacionesBodega::class, mappedBy'colaborador')]
  346.     private Collection $comOperacionesBodegas;
  347.     #[ORM\ManyToMany(targetEntityComComercial::class, mappedBy'colaborador')]
  348.     private Collection $comComercials;
  349.     #[ORM\ManyToMany(targetEntityComFinanzas::class, mappedBy'colaborador')]
  350.     private Collection $comFinanzas;
  351.     #[ORM\ManyToMany(targetEntityComGerencia::class, mappedBy'colaborador')]
  352.     private Collection $comGerencias;
  353.     #[ORM\ManyToMany(targetEntityComHojaVidaAsociado::class, mappedBy'usuariosNotificar')]
  354.     private Collection $comHojaVidaAsociados;
  355.     #[ORM\OneToMany(mappedBy'responsableComercial'targetEntityComVisitaSeguridad::class)]
  356.     private Collection $comVisitaSeguridads;
  357.     #[ORM\OneToMany(mappedBy'ejectivoComercial'targetEntityComGestionCompromisos::class)]
  358.     private Collection $comGestionCompromisos;
  359.     #[ORM\Column(nullabletrue)]
  360.     private ?array $otrosDocumentos null;
  361.     #[ORM\Column(nullabletrue)]
  362.     private ?array $nombreOtrosDocumentos null;
  363.     #[ORM\Column(length255nullabletrue)]
  364.     private ?string $tallaCamisa null;
  365.     #[ORM\Column(length255nullabletrue)]
  366.     private ?string $tallaPantalon null;
  367.     #[ORM\Column(length255nullabletrue)]
  368.     private ?string $tallaBotas null;
  369.     #[ORM\Column(length255nullabletrue)]
  370.     private ?string $discapacidades null;
  371.     #[ORM\Column(length255nullabletrue)]
  372.     private ?string $tituloObtenido null;
  373.     #[ORM\Column(length255nullabletrue)]
  374.     private ?string $institucion null;
  375.     #[ORM\ManyToOne(inversedBy'terPersonas')]
  376.     private ?ParModalidadTrabajo $modalidadEstudio null;
  377.     #[ORM\Column(length255nullabletrue)]
  378.     private ?string $cualProteccionExequial null;
  379.     #[ORM\Column(length255nullabletrue)]
  380.     private ?string $fondoEmpleados null;
  381.     #[ORM\Column(length255nullabletrue)]
  382.     private ?string $cualDeportePractica null;
  383.     #[ORM\Column(length255nullabletrue)]
  384.     private ?string $cualEnfermedadDiagnosticada null;
  385.     #[ORM\Column(length255nullabletrue)]
  386.     private ?string $participaActividades null;
  387.     #[ORM\Column(length255nullabletrue)]
  388.     private ?string $consumeAlcohol null;
  389.     #[ORM\Column(length255nullabletrue)]
  390.     private ?string $frecuenciaAlcohol null;
  391.     #[ORM\Column(length255nullabletrue)]
  392.     private ?string $promedioFuma null;
  393.     #[ORM\OneToMany(mappedBy'persona'targetEntityGHRegistroInscripcionReposicion::class)]
  394.     private Collection $gHRegistroInscripcionReposicions;
  395.     #[ORM\Column(length255nullabletrue)]
  396.     private ?string $salario null;
  397.     #[ORM\OneToMany(mappedBy'terPersona'targetEntityGHRegistroOpainReposicion::class)]
  398.     private Collection $gHRegistroOpainReposicions;
  399.     #[ORM\ManyToOne(inversedBy'terPersonas')]
  400.     private ?ParTipoContrato $tipoContrato null;
  401.     #[ORM\ManyToOne(inversedBy'terPersonas')]
  402.     private ?TerEmpresa $empresa null;
  403.     #[ORM\OneToMany(mappedBy'personaResponsable'targetEntityGHReentrenamientoProceso::class)]
  404.     private Collection $gHReentrenamientoProcesos;
  405.     #[ORM\OneToMany(mappedBy'personaCreaDesvinculacion'targetEntityGHDesvinculacion::class)]
  406.     private Collection $gHDesvinculacions;
  407.     #[ORM\OneToMany(mappedBy'autorizadoPorLicNoR'targetEntityGHNovedadNomina::class)]
  408.     private Collection $gHNovedadNominas;
  409.     #[ORM\Column(length255nullabletrue)]
  410.     private ?string $correoCorporativo null;
  411.     public function getCreateAt(): ?\DateTime {
  412.         return $this->createAt;
  413.     }
  414.     public function setCreateAt(\DateTime $createAt): static {
  415.         $this->createAt $createAt;
  416.         return $this;
  417.     }
  418.     public function getUpdateAt(): ?\DateTime {
  419.         return $this->updateAt;
  420.     }
  421.     public function setUpdateAt(\DateTime $updateAt): static {
  422.         $this->updateAt $updateAt;
  423.         return $this;
  424.     }
  425.     public function getCreateUser(): ?string {
  426.         return $this->createUser;
  427.     }
  428.     public function setCreateUser(string $createUser): static {
  429.         $this->createUser $createUser;
  430.         return $this;
  431.     }
  432.     public function getUpdateUser(): ?string {
  433.         return $this->updateUser;
  434.     }
  435.     public function setUpdateUser(string $updateUser): static {
  436.         $this->updateUser $updateUser;
  437.         return $this;
  438.     }
  439.     public function __construct() {
  440.         $this->personaApruebaVacante = new ArrayCollection();
  441.         $this->personaSolicitaVacante = new ArrayCollection();
  442.         $this->idJefePersona = new ArrayCollection();
  443.         $this->sintomas = new ArrayCollection();
  444.         $this->contactoPersona = new ArrayCollection();
  445.         $this->induccion = new ArrayCollection();
  446.         $this->entrenamiento = new ArrayCollection();
  447.         $this->responsableEntrenamiento = new ArrayCollection();
  448.         $this->periodoPrueba = new ArrayCollection();
  449.         $this->periodoPruebaJefeInm = new ArrayCollection();
  450.         $this->registroInscripcion = new ArrayCollection();
  451.         $this->retiroCesantias = new ArrayCollection();
  452.         $this->nivelCargo = new ArrayCollection();
  453.         $this->perfilCargoAprueba = new ArrayCollection();
  454.         $this->perfilCargoJefe = new ArrayCollection();
  455.         $this->examenPeriodico = new ArrayCollection();
  456.         $this->visitaPeriodica = new ArrayCollection();
  457.         $this->grupoTrabajoJefe = new ArrayCollection();
  458.         $this->grupoTrabajoCoordinador = new ArrayCollection();
  459.         $this->grupoTrabajoColaboradores = new ArrayCollection();
  460.         $this->examenPeriodicoPersona = new ArrayCollection();
  461.         $this->visitaPeriodicaPersona = new ArrayCollection();
  462.         $this->procesoDisciplinarioPersona = new ArrayCollection();
  463.         $this->procesoDisciplinarioSolicita = new ArrayCollection();
  464.         $this->novedadNomina = new ArrayCollection();
  465.         $this->novedadNominaSolicita = new ArrayCollection();
  466.         $this->novedadNominaJefe = new ArrayCollection();
  467.         $this->desvinculacion = new ArrayCollection();
  468.         $this->registroCumplimiento = new ArrayCollection();
  469.         $this->cambioContrato = new ArrayCollection();
  470.         $this->solicitaCambioContrato = new ArrayCollection();
  471.         $this->paqueteRecepciona = new ArrayCollection();
  472.         $this->paqueteDestinatario = new ArrayCollection();
  473.         $this->paqueteReclama = new ArrayCollection();
  474.         $this->paqueteEntrega = new ArrayCollection();
  475.         $this->solicitaDiligencia = new ArrayCollection();
  476.         $this->diligenciaComex = new ArrayCollection();
  477.         $this->autorizaDiligencia = new ArrayCollection();
  478.         $this->diligenciaAsignada = new ArrayCollection();
  479.         $this->cancelaDiligencia = new ArrayCollection();
  480.         $this->remitenteCorrespondencia = new ArrayCollection();
  481.         $this->guiaEnvioCorrespondencia = new ArrayCollection();
  482.         $this->solicitudSuministro = new ArrayCollection();
  483.         $this->recibeSolicitudSuministro = new ArrayCollection();
  484.         $this->responsableFUID = new ArrayCollection();
  485.         $this->inventarioDocumentalGesHum = new ArrayCollection();
  486.         $this->usuarioRecibeFUID = new ArrayCollection();
  487.         $this->usuarioElaboraFUID = new ArrayCollection();
  488.         $this->generaSolicitudDocumento = new ArrayCollection();
  489.         $this->atiendeSolicitudDocumento = new ArrayCollection();
  490.         $this->recibeSolicitudDocumento = new ArrayCollection();
  491.         $this->responsableCambioCustodia = new ArrayCollection();
  492.         $this->solicitaProrrogaSolicitudDocumento = new ArrayCollection();
  493.         $this->solicitaCambioCustodiaDocumento = new ArrayCollection();
  494.         $this->entregaSolicitudDocumento = new ArrayCollection();
  495.         $this->confirmaEntregaSolicitudDocumento = new ArrayCollection();
  496.         $this->devolucionaSolicitudDocumento = new ArrayCollection();
  497.         $this->induccionProcesos = new ArrayCollection();
  498.         $this->registroInscripcionSolicitante = new ArrayCollection();
  499.         $this->entrenamientoProcesos = new ArrayCollection();
  500.         $this->examenPeriodicoNotificacion = new ArrayCollection();
  501.         $this->visitaPeriodicaNotificacion = new ArrayCollection();
  502.         $this->recibeProcesoDesvinculacion = new ArrayCollection();
  503.         $this->entrevistaRetiroDiligencia = new ArrayCollection();
  504.         $this->solicitaControlAcceso = new ArrayCollection();
  505.         $this->controlAccesoIngreso = new ArrayCollection();
  506.         $this->atiendeIngresoVisitante = new ArrayCollection();
  507.         $this->solicitanteCCTV = new ArrayCollection();
  508.         $this->autorizaSalidaMuestra = new ArrayCollection();
  509.         $this->homeOffice = new ArrayCollection();
  510.         $this->solicitaIngresoVisitante = new ArrayCollection();
  511.         $this->precintosCustodia = new ArrayCollection();
  512.         $this->solicitantePrecintos = new ArrayCollection();
  513.         $this->precintoAsignacion = new ArrayCollection();
  514.         $this->entregaPrecintoAsignado = new ArrayCollection();
  515.         $this->recibePrecintoAsignado = new ArrayCollection();
  516.         $this->entregaPrecintoRegistro = new ArrayCollection();
  517.         $this->instalaPrecintoRegistro = new ArrayCollection();
  518.         $this->solicitudesCompra = new ArrayCollection();
  519.         $this->aprobacionSolicitudCompra = new ArrayCollection();
  520.         $this->solicitanteOrdenCompra = new ArrayCollection();
  521.         $this->RFRembolsoCajaMenor = new ArrayCollection();
  522.         $this->finanzaRembolsoCajaMenor = new ArrayCollection();
  523.         $this->beneficiarioRembolsoCajaMenorItem = new ArrayCollection();
  524.         $this->aprobadoRembolsoCajaMenorItem = new ArrayCollection();
  525.         $this->disposicionProveedorDirector = new ArrayCollection();
  526.         $this->mensajes = new ArrayCollection();
  527.         $this->remitenteMensaje = new ArrayCollection();
  528.         $this->horarios = new ArrayCollection();
  529.         $this->novedadNominaAutorizadas = new ArrayCollection();
  530.         $this->cuestionarioAsignaciones = new ArrayCollection();
  531.         $this->reentrenamientos = new ArrayCollection();
  532.         $this->responsableCapacitacionActividades = new ArrayCollection();
  533.         $this->registrosOpain = new ArrayCollection();
  534.         $this->verificacionAntecedentesPersona = new ArrayCollection();
  535.         $this->evaluacionesDesempenoPersona = new ArrayCollection();
  536.         $this->condicionesContratacionJefeInm = new ArrayCollection();
  537.         $this->condicionesContratacionAprobador = new ArrayCollection();
  538.         $this->historialesPerso = new ArrayCollection();
  539.         $this->novedadNominaPSL = new ArrayCollection();
  540.         $this->novedadNominaBeneficioV = new ArrayCollection();
  541.         $this->entrevistaJefe = new ArrayCollection();
  542.         $this->perfilApruebaCargo = new ArrayCollection();
  543.         $this->gestionTurno = new ArrayCollection();
  544.         $this->novedadNominaAux = new ArrayCollection();
  545.         $this->novedadNominaBon = new ArrayCollection();
  546.         $this->comVisitaComercialCompromisos = new ArrayCollection();
  547.         $this->comOfertaComercial = new ArrayCollection();
  548.         $this->comHojaVidas = new ArrayCollection();
  549.         $this->comAsignarComex = new ArrayCollection();
  550.         $this->comAsignarComexEjecutivo = new ArrayCollection();
  551.         $this->comImportaciones = new ArrayCollection();
  552.         $this->comComex = new ArrayCollection();
  553.         $this->comOperacionesBodegas = new ArrayCollection();
  554.         $this->comComercials = new ArrayCollection();
  555.         $this->comFinanzas = new ArrayCollection();
  556.         $this->comGerencias = new ArrayCollection();
  557.         $this->comHojaVidaAsociados = new ArrayCollection();
  558.         $this->comVisitaSeguridads = new ArrayCollection();
  559.         $this->comGestionCompromisos = new ArrayCollection();
  560.         $this->gHRegistroInscripcionReposicions = new ArrayCollection();
  561.         $this->gHRegistroOpainReposicions = new ArrayCollection();
  562.         $this->gHReentrenamientoProcesos = new ArrayCollection();
  563.         $this->gHDesvinculacions = new ArrayCollection();
  564.         $this->gHNovedadNominas = new ArrayCollection();
  565.     }
  566.     public function __toString() {
  567.         $string $this->getNombres();
  568.         if($this->getPerfilCargo()){
  569.             $string.=" ({$this->getPerfilCargo()->getCargo()->getNombre()})";
  570.         }
  571.         return "$string";
  572.     }
  573.     public function getId(): ?int {
  574.         return $this->id;
  575.     }
  576.     public function getFechaDiligenciamiento(): ?\DateTimeInterface {
  577.         return $this->fechaDiligenciamiento;
  578.     }
  579.     public function getGrupoSanguineoRH(): ?string {
  580.         return $this->grupoSanguineoRH;
  581.     }
  582.     public function getEstrato(): ?int {
  583.         return $this->estrato;
  584.     }
  585.     public function getFotografia(): ?string {
  586.         return $this->fotografia;
  587.     }
  588.     public function getUniversidad(): ?string {
  589.         return $this->universidad;
  590.     }
  591.     public function getQueHaceTiempoLibre(): ?string {
  592.         return $this->queHaceTiempoLibre;
  593.     }
  594.     public function getCualExequial(): ?string {
  595.         return $this->cualExequial;
  596.     }
  597.     public function getCualDeporte(): ?string {
  598.         return $this->cualDeporte;
  599.     }
  600.     public function getCualEnfermedad(): ?string {
  601.         return $this->cualEnfermedad;
  602.     }
  603.     public function getCualesActiviSalud(): ?string {
  604.         return $this->cualesActiviSalud;
  605.     }
  606.     public function getPromedioDiario(): ?string {
  607.         return $this->promedioDiario;
  608.     }
  609.     public function getFirmaLarga(): ?string {
  610.         return $this->firmaLarga;
  611.     }
  612.     public function getFirmaCorta(): ?string {
  613.         return $this->firmaCorta;
  614.     }
  615.     public function getIndiceIzquierdo(): ?string {
  616.         return $this->indiceIzquierdo;
  617.     }
  618.     public function getIndiceDerecho(): ?string {
  619.         return $this->indiceDerecho;
  620.     }
  621.     public function setFechaDiligenciamiento(?\DateTimeInterface $fechaDiligenciamiento): void {
  622.         $this->fechaDiligenciamiento $fechaDiligenciamiento;
  623.     }
  624.     public function setGrupoSanguineoRH(?string $grupoSanguineoRH): void {
  625.         $this->grupoSanguineoRH $grupoSanguineoRH;
  626.     }
  627.     public function setEstrato(?int $estrato): void {
  628.         $this->estrato $estrato;
  629.     }
  630.     public function setFotografia(?string $fotografia): void {
  631.         $this->fotografia $fotografia;
  632.     }
  633.     public function setUniversidad(?string $universidad): void {
  634.         $this->universidad $universidad;
  635.     }
  636.     public function setQueHaceTiempoLibre(?string $queHaceTiempoLibre): void {
  637.         $this->queHaceTiempoLibre $queHaceTiempoLibre;
  638.     }
  639.     public function setCualExequial(?string $cualExequial): void {
  640.         $this->cualExequial $cualExequial;
  641.     }
  642.     public function setCualDeporte(?string $cualDeporte): void {
  643.         $this->cualDeporte $cualDeporte;
  644.     }
  645.     public function setCualEnfermedad(?string $cualEnfermedad): void {
  646.         $this->cualEnfermedad $cualEnfermedad;
  647.     }
  648.     public function setCualesActiviSalud(?string $cualesActiviSalud): void {
  649.         $this->cualesActiviSalud $cualesActiviSalud;
  650.     }
  651.     public function setPromedioDiario(?string $promedioDiario): void {
  652.         $this->promedioDiario $promedioDiario;
  653.     }
  654.     public function setFirmaLarga(?string $firmaLarga): void {
  655.         $this->firmaLarga $firmaLarga;
  656.     }
  657.     public function setFirmaCorta(?string $firmaCorta): void {
  658.         $this->firmaCorta $firmaCorta;
  659.     }
  660.     public function setIndiceIzquierdo(?string $indiceIzquierdo): void {
  661.         $this->indiceIzquierdo $indiceIzquierdo;
  662.     }
  663.     public function setIndiceDerecho(?string $indiceDerecho): void {
  664.         $this->indiceDerecho $indiceDerecho;
  665.     }
  666.     /**
  667.      * @return Collection<int, GHVacante>
  668.      */
  669.     public function getPersonaApruebaVacante(): Collection {
  670.         return $this->personaPruebaVacante;
  671.     }
  672.     public function addPersonaApruebaVacante(GHVacante $personaPruebaVacante): static {
  673.         if (!$this->personaApruebaVacante->contains($personaPruebaVacante)) {
  674.             $this->personaApruebaVacante->add($personaPruebaVacante);
  675.             $personaPruebaVacante->setPersonaAprueba($this);
  676.         }
  677.         return $this;
  678.     }
  679.     public function removePersonaApruebaVacante(GHVacante $personaPruebaVacante): static {
  680.         if ($this->personaPruebaVacante->removeElement($personaPruebaVacante)) {
  681.             // set the owning side to null (unless already changed)
  682.             if ($personaPruebaVacante->getPersonaAprueba() === $this) {
  683.                 $personaPruebaVacante->setPersonaAprueba(null);
  684.             }
  685.         }
  686.         return $this;
  687.     }
  688.     /**
  689.      * @return Collection<int, GHVacante>
  690.      */
  691.     public function getPersonaSolicitaVacante(): Collection {
  692.         return $this->personaSolicitaVacante;
  693.     }
  694.     public function addPersonaSolicitaVacante(GHVacante $personaSolicitaVacante): static {
  695.         if (!$this->personaSolicitaVacante->contains($personaSolicitaVacante)) {
  696.             $this->personaSolicitaVacante->add($personaSolicitaVacante);
  697.             $personaSolicitaVacante->setPesonaSolicita($this);
  698.         }
  699.         return $this;
  700.     }
  701.     public function removePersonaSolicitaVacante(GHVacante $personaSolicitaVacante): static {
  702.         if ($this->personaSolicitaVacante->removeElement($personaSolicitaVacante)) {
  703.             // set the owning side to null (unless already changed)
  704.             if ($personaSolicitaVacante->getPesonaSolicita() === $this) {
  705.                 $personaSolicitaVacante->setPesonaSolicita(null);
  706.             }
  707.         }
  708.         return $this;
  709.     }
  710.     public function getEstado(): ?ParEstado {
  711.         return $this->estado;
  712.     }
  713.     public function setEstado(?ParEstado $estado): static {
  714.         $this->estado $estado;
  715.         return $this;
  716.     }
  717.     /**
  718.      * @return Collection<int, GHEntrevistaJefe>
  719.      */
  720.     public function getIdJefePersona(): Collection {
  721.         return $this->idJefePersona;
  722.     }
  723.     public function addIdJefePersona(GHEntrevistaJefe $idJefePersona): static {
  724.         if (!$this->idJefePersona->contains($idJefePersona)) {
  725.             $this->idJefePersona->add($idJefePersona);
  726.             $idJefePersona->setJefePersonaId($this);
  727.         }
  728.         return $this;
  729.     }
  730.     public function removeIdJefePersona(GHEntrevistaJefe $idJefePersona): static {
  731.         if ($this->idJefePersona->removeElement($idJefePersona)) {
  732.             // set the owning side to null (unless already changed)
  733.             if ($idJefePersona->getJefePersonaId() === $this) {
  734.                 $idJefePersona->setJefePersonaId(null);
  735.             }
  736.         }
  737.         return $this;
  738.     }
  739.     public function getPerfilCargo(): ?GHPerfilCargo {
  740.         return $this->perfilCargo;
  741.     }
  742.     public function setPerfilCargo(?GHPerfilCargo $perfilCargo): static {
  743.         $this->perfilCargo $perfilCargo;
  744.         return $this;
  745.     }
  746.     public function getNombres(): ?string {
  747.         return $this->nombres;
  748.     }
  749.     public function setNombres(string $nombres): static {
  750.         $this->nombres $nombres;
  751.         return $this;
  752.     }
  753.     public function getTipoDocumento(): ?ParTipoDocumento {
  754.         return $this->tipoDocumento;
  755.     }
  756.     public function setTipoDocumento(?ParTipoDocumento $tipoDocumento): static {
  757.         $this->tipoDocumento $tipoDocumento;
  758.         return $this;
  759.     }
  760.     public function getNumeroDocumento(): ?string {
  761.         return $this->numeroDocumento;
  762.     }
  763.     public function setNumeroDocumento(string $numeroDocumento): static {
  764.         $this->numeroDocumento $numeroDocumento;
  765.         return $this;
  766.     }
  767.     public function getFechaNacimiento(): ?\DateTimeInterface {
  768.         return $this->fechaNacimiento;
  769.     }
  770.     public function setFechaNacimiento(?\DateTimeInterface $fechaNacimiento): static {
  771.         $this->fechaNacimiento $fechaNacimiento;
  772.         return $this;
  773.     }
  774.     public function getEdad(): ?int {
  775.         return $this->edad;
  776.     }
  777.     public function setEdad(?int $edad): static {
  778.         $this->edad $edad;
  779.         return $this;
  780.     }
  781.     public function getEstadoCivil(): ?ParEstadoCivil {
  782.         return $this->estadoCivil;
  783.     }
  784.     public function setEstadoCivil(?ParEstadoCivil $estadoCivil): static {
  785.         $this->estadoCivil $estadoCivil;
  786.         return $this;
  787.     }
  788.     public function getDireccion(): ?string {
  789.         return $this->direccion;
  790.     }
  791.     public function setDireccion(string $direccion): static {
  792.         $this->direccion $direccion;
  793.         return $this;
  794.     }
  795.     public function getBarrio(): ?string {
  796.         return $this->barrio;
  797.     }
  798.     public function setBarrio(string $barrio): static {
  799.         $this->barrio $barrio;
  800.         return $this;
  801.     }
  802.     public function getLocalidad(): ?string {
  803.         return $this->localidad;
  804.     }
  805.     public function setLocalidad(string $localidad): static {
  806.         $this->localidad $localidad;
  807.         return $this;
  808.     }
  809.     public function getTenenciaResidencia(): ?ParTenenciaResidencia {
  810.         return $this->tenenciaResidencia;
  811.     }
  812.     public function setTenenciaResidencia(?ParTenenciaResidencia $tenenciaResidencia): static {
  813.         $this->tenenciaResidencia $tenenciaResidencia;
  814.         return $this;
  815.     }
  816.     public function getTipoVivienda(): ?ParTipoVivienda {
  817.         return $this->tipoVivienda;
  818.     }
  819.     public function setTipoVivienda(?ParTipoVivienda $tipoVivienda): static {
  820.         $this->tipoVivienda $tipoVivienda;
  821.         return $this;
  822.     }
  823.     public function getEmail(): ?string {
  824.         return $this->email;
  825.     }
  826.     public function setEmail(string $email): static {
  827.         $this->email $email;
  828.         return $this;
  829.     }
  830.     public function getCelular(): ?string {
  831.         return $this->celular;
  832.     }
  833.     public function setCelular(string $celular): static {
  834.         $this->celular $celular;
  835.         return $this;
  836.     }
  837.     public function getTelefonoFijo(): ?string {
  838.         return $this->telefonoFijo;
  839.     }
  840.     public function setTelefonoFijo(?string $telefonoFijo): static {
  841.         $this->telefonoFijo $telefonoFijo;
  842.         return $this;
  843.     }
  844.     public function getNivelEducativo(): ?ParNivelEducativo {
  845.         return $this->nivelEducativo;
  846.     }
  847.     public function setNivelEducativo(?ParNivelEducativo $nivelEducativo): static {
  848.         $this->nivelEducativo $nivelEducativo;
  849.         return $this;
  850.     }
  851.     public function getNombreCarrera(): ?string {
  852.         return $this->nombreCarrera;
  853.     }
  854.     public function setNombreCarrera(string $nombreCarrera): static {
  855.         $this->nombreCarrera $nombreCarrera;
  856.         return $this;
  857.     }
  858.     public function isEstudiaActual(): ?bool {
  859.         return $this->estudiaActual;
  860.     }
  861.     public function setEstudiaActual(?bool $estudiaActual): static {
  862.         $this->estudiaActual $estudiaActual;
  863.         return $this;
  864.     }
  865.     public function getHorario(): ?string {
  866.         return $this->horario;
  867.     }
  868.     public function setHorario(string $horario): static {
  869.         $this->horario $horario;
  870.         return $this;
  871.     }
  872.     public function getNivelIngles(): ?ParHabilidad {
  873.         return $this->nivelIngles;
  874.     }
  875.     public function setNivelIngles(?ParHabilidad $nivelIngles): static {
  876.         $this->nivelIngles $nivelIngles;
  877.         return $this;
  878.     }
  879.     public function getEPS(): ?ParEPS {
  880.         return $this->EPS;
  881.     }
  882.     public function setEPS(?ParEPS $EPS): static {
  883.         $this->EPS $EPS;
  884.         return $this;
  885.     }
  886.     public function getFondoPension(): ?ParFondoPension {
  887.         return $this->fondoPension;
  888.     }
  889.     public function setFondoPension(?ParFondoPension $fondoPension): static {
  890.         $this->fondoPension $fondoPension;
  891.         return $this;
  892.     }
  893.     public function getFondoCesantias(): ?ParFondoCesantias {
  894.         return $this->fondoCesantias;
  895.     }
  896.     public function setFondoCesantias(?ParFondoCesantias $fondoCesantias): static {
  897.         $this->fondoCesantias $fondoCesantias;
  898.         return $this;
  899.     }
  900.     public function getCajaCompensacion(): ?ParCajaCompensacion {
  901.         return $this->cajaCompensacion;
  902.     }
  903.     public function setCajaCompensacion(?ParCajaCompensacion $cajaCompensacion): static {
  904.         $this->cajaCompensacion $cajaCompensacion;
  905.         return $this;
  906.     }
  907.     public function getDiagnosticoEnfermedad(): ?string {
  908.         return $this->diagnosticoEnfermedad;
  909.     }
  910.     public function setDiagnosticoEnfermedad(?string $diagnosticoEnfermedad): static {
  911.         $this->diagnosticoEnfermedad $diagnosticoEnfermedad;
  912.         return $this;
  913.     }
  914.     public function isUsoAlcohol(): ?bool {
  915.         return $this->usoAlcohol;
  916.     }
  917.     public function setUsoAlcohol(?bool $usoAlcohol): static {
  918.         $this->usoAlcohol $usoAlcohol;
  919.         return $this;
  920.     }
  921.     public function isUsoCigarrillo(): ?bool {
  922.         return $this->usoCigarrillo;
  923.     }
  924.     public function setUsoCigarrillo(?bool $usoCigarrillo): static {
  925.         $this->usoCigarrillo $usoCigarrillo;
  926.         return $this;
  927.     }
  928.     /**
  929.      * @return Collection<int, ParSintomas>
  930.      */
  931.     public function getSintomas(): Collection {
  932.         return $this->sintomas;
  933.     }
  934.     public function addSintoma(ParSintomas $sintoma): static {
  935.         if (!$this->sintomas->contains($sintoma)) {
  936.             $this->sintomas->add($sintoma);
  937.         }
  938.         return $this;
  939.     }
  940.     public function removeSintoma(ParSintomas $sintoma): static {
  941.         $this->sintomas->removeElement($sintoma);
  942.         return $this;
  943.     }
  944.     public function getNumeroHijos(): ?int {
  945.         return $this->numeroHijos;
  946.     }
  947.     public function setNumeroHijos(?int $numeroHijos): static {
  948.         $this->numeroHijos $numeroHijos;
  949.         return $this;
  950.     }
  951.     /**
  952.      * @return Collection<int, TerContactoPersona>
  953.      */
  954.     public function getContactoPersona(): Collection {
  955.         return $this->contactoPersona;
  956.     }
  957.     public function addContactoPersona(TerContactoPersona $contactoPersona): static {
  958.         if (!$this->contactoPersona->contains($contactoPersona)) {
  959.             $this->contactoPersona->add($contactoPersona);
  960.             $contactoPersona->setPersona($this);
  961.         }
  962.         return $this;
  963.     }
  964.     public function removeContactoPersona(TerContactoPersona $contactoPersona): static {
  965.         if ($this->contactoPersona->removeElement($contactoPersona)) {
  966.             // set the owning side to null (unless already changed)
  967.             if ($contactoPersona->getPersona() === $this) {
  968.                 $contactoPersona->setPersona(null);
  969.             }
  970.         }
  971.         return $this;
  972.     }
  973.     /**
  974.      * @return Collection<int, GHInduccion>
  975.      */
  976.     public function getInduccion(): Collection {
  977.         return $this->induccion;
  978.     }
  979.     public function addInduccion(GHInduccion $induccion): static {
  980.         if (!$this->induccion->contains($induccion)) {
  981.             $this->induccion->add($induccion);
  982.             $induccion->setPersona($this);
  983.         }
  984.         return $this;
  985.     }
  986.     public function removeInduccion(GHInduccion $induccion): static {
  987.         if ($this->induccion->removeElement($induccion)) {
  988.             // set the owning side to null (unless already changed)
  989.             if ($induccion->getPersona() === $this) {
  990.                 $induccion->setPersona(null);
  991.             }
  992.         }
  993.         return $this;
  994.     }
  995.     /**
  996.      * @return Collection<int, GHEntrenamiento>
  997.      */
  998.     public function getEntrenamiento(): Collection {
  999.         return $this->entrenamiento;
  1000.     }
  1001.     public function addEntrenamiento(GHEntrenamiento $entrenamiento): static {
  1002.         if (!$this->entrenamiento->contains($entrenamiento)) {
  1003.             $this->entrenamiento->add($entrenamiento);
  1004.             $entrenamiento->setPersona($this);
  1005.         }
  1006.         return $this;
  1007.     }
  1008.     public function removeEntrenamiento(GHEntrenamiento $entrenamiento): static {
  1009.         if ($this->entrenamiento->removeElement($entrenamiento)) {
  1010.             // set the owning side to null (unless already changed)
  1011.             if ($entrenamiento->getPersona() === $this) {
  1012.                 $entrenamiento->setPersona(null);
  1013.             }
  1014.         }
  1015.         return $this;
  1016.     }
  1017.     /**
  1018.      * @return Collection<int, GHEntrenamiento>
  1019.      */
  1020.     public function getResponsableEntrenamiento(): Collection {
  1021.         return $this->responsableEntrenamiento;
  1022.     }
  1023.     public function addResponsableEntrenamiento(GHEntrenamiento $responsableEntrenamiento): static {
  1024.         if (!$this->responsableEntrenamiento->contains($responsableEntrenamiento)) {
  1025.             $this->responsableEntrenamiento->add($responsableEntrenamiento);
  1026.             $responsableEntrenamiento->setResponsableEntrenamiento($this);
  1027.         }
  1028.         return $this;
  1029.     }
  1030.     public function removeResponsableEntrenamiento(GHEntrenamiento $responsableEntrenamiento): static {
  1031.         if ($this->responsableEntrenamiento->removeElement($responsableEntrenamiento)) {
  1032.             // set the owning side to null (unless already changed)
  1033.             if ($responsableEntrenamiento->getResponsableEntrenamiento() === $this) {
  1034.                 $responsableEntrenamiento->setResponsableEntrenamiento(null);
  1035.             }
  1036.         }
  1037.         return $this;
  1038.     }
  1039.     /**
  1040.      * @return Collection<int, GHPeriodoPrueba>
  1041.      */
  1042.     public function getPeriodoPrueba(): Collection {
  1043.         return $this->periodoPrueba;
  1044.     }
  1045.     public function addPeriodoPrueba(GHPeriodoPrueba $periodoPrueba): static {
  1046.         if (!$this->periodoPrueba->contains($periodoPrueba)) {
  1047.             $this->periodoPrueba->add($periodoPrueba);
  1048.             $periodoPrueba->setPersona($this);
  1049.         }
  1050.         return $this;
  1051.     }
  1052.     public function removePeriodoPrueba(GHPeriodoPrueba $periodoPrueba): static {
  1053.         if ($this->periodoPrueba->removeElement($periodoPrueba)) {
  1054.             // set the owning side to null (unless already changed)
  1055.             if ($periodoPrueba->getPersona() === $this) {
  1056.                 $periodoPrueba->setPersona(null);
  1057.             }
  1058.         }
  1059.         return $this;
  1060.     }
  1061.     /**
  1062.      * @return Collection<int, GHPeriodoPrueba>
  1063.      */
  1064.     public function getPeriodoPruebaJefeInm(): Collection {
  1065.         return $this->periodoPruebaJefeInm;
  1066.     }
  1067.     public function addPeriodoPruebaJefeInm(GHPeriodoPrueba $periodoPruebaJefeInm): static {
  1068.         if (!$this->periodoPruebaJefeInm->contains($periodoPruebaJefeInm)) {
  1069.             $this->periodoPruebaJefeInm->add($periodoPruebaJefeInm);
  1070.             $periodoPruebaJefeInm->setJefeInmediato($this);
  1071.         }
  1072.         return $this;
  1073.     }
  1074.     public function removePeriodoPruebaJefeInm(GHPeriodoPrueba $periodoPruebaJefeInm): static {
  1075.         if ($this->periodoPruebaJefeInm->removeElement($periodoPruebaJefeInm)) {
  1076.             // set the owning side to null (unless already changed)
  1077.             if ($periodoPruebaJefeInm->getJefeInmediato() === $this) {
  1078.                 $periodoPruebaJefeInm->setJefeInmediato(null);
  1079.             }
  1080.         }
  1081.         return $this;
  1082.     }
  1083.     /**
  1084.      * @return Collection<int, GHRegistroInscripcion>
  1085.      */
  1086.     public function getRegistroInscripcion(): Collection {
  1087.         return $this->registroInscripcion;
  1088.     }
  1089.     public function addRegistroInscripcion(GHRegistroInscripcion $registroInscripcion): static {
  1090.         if (!$this->registroInscripcion->contains($registroInscripcion)) {
  1091.             $this->registroInscripcion->add($registroInscripcion);
  1092.             $registroInscripcion->setPersona($this);
  1093.         }
  1094.         return $this;
  1095.     }
  1096.     public function removeRegistroInscripcion(GHRegistroInscripcion $registroInscripcion): static {
  1097.         if ($this->registroInscripcion->removeElement($registroInscripcion)) {
  1098.             // set the owning side to null (unless already changed)
  1099.             if ($registroInscripcion->getPersona() === $this) {
  1100.                 $registroInscripcion->setPersona(null);
  1101.             }
  1102.         }
  1103.         return $this;
  1104.     }
  1105.     /**
  1106.      * @return Collection<int, GHRetiroCesantias>
  1107.      */
  1108.     public function getRetiroCesantias(): Collection {
  1109.         return $this->retiroCesantias;
  1110.     }
  1111.     public function addRetiroCesantia(GHRetiroCesantias $retiroCesantia): static {
  1112.         if (!$this->retiroCesantias->contains($retiroCesantia)) {
  1113.             $this->retiroCesantias->add($retiroCesantia);
  1114.             $retiroCesantia->setPersona($this);
  1115.         }
  1116.         return $this;
  1117.     }
  1118.     public function removeRetiroCesantia(GHRetiroCesantias $retiroCesantia): static {
  1119.         if ($this->retiroCesantias->removeElement($retiroCesantia)) {
  1120.             // set the owning side to null (unless already changed)
  1121.             if ($retiroCesantia->getPersona() === $this) {
  1122.                 $retiroCesantia->setPersona(null);
  1123.             }
  1124.         }
  1125.         return $this;
  1126.     }
  1127.     /**
  1128.      * @return Collection<int, ParNivelCargo>
  1129.      */
  1130.     public function getNivelCargo(): Collection {
  1131.         return $this->nivelCargo;
  1132.     }
  1133.     public function addNivelCargo(ParNivelCargo $nivelCargo): static {
  1134.         if (!$this->nivelCargo->contains($nivelCargo)) {
  1135.             $this->nivelCargo->add($nivelCargo);
  1136.         }
  1137.         return $this;
  1138.     }
  1139.     public function removeNivelCargo(ParNivelCargo $nivelCargo): static {
  1140.         $this->nivelCargo->removeElement($nivelCargo);
  1141.         return $this;
  1142.     }
  1143.     /**
  1144.      * @return Collection<int, GHPerfilCargo>
  1145.      */
  1146.     public function getPerfilCargoAprueba(): Collection {
  1147.         return $this->perfilCargoAprueba;
  1148.     }
  1149.     public function addPerfilCargoAprueba(GHPerfilCargo $perfilCargoAprueba): static {
  1150.         if (!$this->perfilCargoAprueba->contains($perfilCargoAprueba)) {
  1151.             $this->perfilCargoAprueba->add($perfilCargoAprueba);
  1152.             $perfilCargoAprueba->setPersonaAprueba($this);
  1153.         }
  1154.         return $this;
  1155.     }
  1156.     public function removePerfilCargoAprueba(GHPerfilCargo $perfilCargoAprueba): static {
  1157.         if ($this->perfilCargoAprueba->removeElement($perfilCargoAprueba)) {
  1158.             // set the owning side to null (unless already changed)
  1159.             if ($perfilCargoAprueba->getPersonaAprueba() === $this) {
  1160.                 $perfilCargoAprueba->setPersonaAprueba(null);
  1161.             }
  1162.         }
  1163.         return $this;
  1164.     }
  1165.     /**
  1166.      * @return Collection<int, GHPerfilCargo>
  1167.      */
  1168.     public function getPerfilCargoJefe(): Collection {
  1169.         return $this->perfilCargoJefe;
  1170.     }
  1171.     public function addPerfilCargoJefe(GHPerfilCargo $perfilCargoJefe): static {
  1172.         if (!$this->perfilCargoJefe->contains($perfilCargoJefe)) {
  1173.             $this->perfilCargoJefe->add($perfilCargoJefe);
  1174.             $perfilCargoJefe->setJefeInmediato($this);
  1175.         }
  1176.         return $this;
  1177.     }
  1178.     public function removePerfilCargoJefe(GHPerfilCargo $perfilCargoJefe): static {
  1179.         if ($this->perfilCargoJefe->removeElement($perfilCargoJefe)) {
  1180.             // set the owning side to null (unless already changed)
  1181.             if ($perfilCargoJefe->getJefeInmediato() === $this) {
  1182.                 $perfilCargoJefe->setJefeInmediato(null);
  1183.             }
  1184.         }
  1185.         return $this;
  1186.     }
  1187.     public function hasNivelDirector(): bool {
  1188.         $res false;
  1189.         $arrNivel = [];
  1190.         foreach ($this->getNivelCargo() as $nc) {
  1191.             $arrNivel[] = $nc->getId();
  1192.         }
  1193.         $val array_intersect([12], $arrNivel);
  1194.         if (count($val) > 0) {
  1195.             $res true;
  1196.         }
  1197.         return $res;
  1198.     }
  1199.     /**
  1200.      * @return Collection<int, GHExamenPeriodico>
  1201.      */
  1202.     public function getExamenPeriodico(): Collection
  1203.     {
  1204.         return $this->examenPeriodico;
  1205.     }
  1206.     public function addExamenPeriodico(GHExamenPeriodico $examenPeriodico): static
  1207.     {
  1208.         if (!$this->examenPeriodico->contains($examenPeriodico)) {
  1209.             $this->examenPeriodico->add($examenPeriodico);
  1210.             $examenPeriodico->setPersonaAutoriza($this);
  1211.         }
  1212.         return $this;
  1213.     }
  1214.     public function removeExamenPeriodico(GHExamenPeriodico $examenPeriodico): static
  1215.     {
  1216.         if ($this->examenPeriodico->removeElement($examenPeriodico)) {
  1217.             // set the owning side to null (unless already changed)
  1218.             if ($examenPeriodico->getPersonaAutoriza() === $this) {
  1219.                 $examenPeriodico->setPersonaAutoriza(null);
  1220.             }
  1221.         }
  1222.         return $this;
  1223.     }
  1224.     /**
  1225.      * @return Collection<int, GHVisitaPeriodica>
  1226.      */
  1227.     public function getVisitaPeriodica(): Collection
  1228.     {
  1229.         return $this->visitaPeriodica;
  1230.     }
  1231.     public function addVisitaPeriodica(GHVisitaPeriodica $visitaPeriodica): static
  1232.     {
  1233.         if (!$this->visitaPeriodica->contains($visitaPeriodica)) {
  1234.             $this->visitaPeriodica->add($visitaPeriodica);
  1235.             $visitaPeriodica->setPersonaAutoriza($this);
  1236.         }
  1237.         return $this;
  1238.     }
  1239.     public function removeVisitaPeriodica(GHVisitaPeriodica $visitaPeriodica): static
  1240.     {
  1241.         if ($this->visitaPeriodica->removeElement($visitaPeriodica)) {
  1242.             // set the owning side to null (unless already changed)
  1243.             if ($visitaPeriodica->getPersonaAutoriza() === $this) {
  1244.                 $visitaPeriodica->setPersonaAutoriza(null);
  1245.             }
  1246.         }
  1247.         return $this;
  1248.     }
  1249.     /**
  1250.      * @return Collection<int, GHGrupoTrabajo>
  1251.      */
  1252.     public function getGrupoTrabajoJefe(): Collection
  1253.     {
  1254.         return $this->grupoTrabajoJefe;
  1255.     }
  1256.     public function addGrupoTrabajoJefe(GHGrupoTrabajo $grupoTrabajoJefe): static
  1257.     {
  1258.         if (!$this->grupoTrabajoJefe->contains($grupoTrabajoJefe)) {
  1259.             $this->grupoTrabajoJefe->add($grupoTrabajoJefe);
  1260.             $grupoTrabajoJefe->setDirector($this);
  1261.         }
  1262.         return $this;
  1263.     }
  1264.     public function removeGrupoTrabajoJefe(GHGrupoTrabajo $grupoTrabajoJefe): static
  1265.     {
  1266.         if ($this->grupoTrabajoJefe->removeElement($grupoTrabajoJefe)) {
  1267.             // set the owning side to null (unless already changed)
  1268.             if ($grupoTrabajoJefe->getDirector() === $this) {
  1269.                 $grupoTrabajoJefe->setDirector(null);
  1270.             }
  1271.         }
  1272.         return $this;
  1273.     }
  1274.     /**
  1275.      * @return Collection<int, GHGrupoTrabajo>
  1276.      */
  1277.     public function getGrupoTrabajoCoordinador(): Collection
  1278.     {
  1279.         return $this->grupoTrabajoCoordinador;
  1280.     }
  1281.     public function addGrupoTrabajoCoordinador(GHGrupoTrabajo $grupoTrabajoCoordinador): static
  1282.     {
  1283.         if (!$this->grupoTrabajoCoordinador->contains($grupoTrabajoCoordinador)) {
  1284.             $this->grupoTrabajoCoordinador->add($grupoTrabajoCoordinador);
  1285.             $grupoTrabajoCoordinador->setCoordinador($this);
  1286.         }
  1287.         return $this;
  1288.     }
  1289.     public function removeGrupoTrabajoCoordinador(GHGrupoTrabajo $grupoTrabajoCoordinador): static
  1290.     {
  1291.         if ($this->grupoTrabajoCoordinador->removeElement($grupoTrabajoCoordinador)) {
  1292.             // set the owning side to null (unless already changed)
  1293.             if ($grupoTrabajoCoordinador->getCoordinador() === $this) {
  1294.                 $grupoTrabajoCoordinador->setCoordinador(null);
  1295.             }
  1296.         }
  1297.         return $this;
  1298.     }
  1299.     /**
  1300.      * @return Collection<int, GHGrupoTrabajo>
  1301.      */
  1302.     public function getGrupoTrabajoColaboradores(): Collection
  1303.     {
  1304.         return $this->grupoTrabajoColaboradores;
  1305.     }
  1306.     public function addGrupoTrabajoColaborador(GHGrupoTrabajo $grupo): static
  1307.     {
  1308.         if (!$this->grupoTrabajoColaboradores->contains($grupo)) {
  1309.             $this->grupoTrabajoColaboradores->add($grupo);
  1310.             $grupo->addColaborador($this); // ðŸ‘ˆ sincronía
  1311.         }
  1312.         return $this;
  1313.     }
  1314.     public function removeGrupoTrabajoColaborador(GHGrupoTrabajo $grupo): static
  1315.     {
  1316.         if ($this->grupoTrabajoColaboradores->removeElement($grupo)) {
  1317.             $grupo->removeColaborador($this); // ðŸ‘ˆ sincronía
  1318.         }
  1319.         return $this;
  1320.     }
  1321.     /**
  1322.      * @return Collection<int, GHExamenPeriodico>
  1323.      */
  1324.     public function getExamenPeriodicoPersona(): Collection
  1325.     {
  1326.         return $this->examenPeriodicoPersona;
  1327.     }
  1328.     public function addExamenPeriodicoPersona(GHExamenPeriodico $examenPeriodicoPersona): static
  1329.     {
  1330.         if (!$this->examenPeriodicoPersona->contains($examenPeriodicoPersona)) {
  1331.             $this->examenPeriodicoPersona->add($examenPeriodicoPersona);
  1332.             $examenPeriodicoPersona->setPersona($this);
  1333.         }
  1334.         return $this;
  1335.     }
  1336.     public function removeExamenPeriodicoPersona(GHExamenPeriodico $examenPeriodicoPersona): static
  1337.     {
  1338.         if ($this->examenPeriodicoPersona->removeElement($examenPeriodicoPersona)) {
  1339.             // set the owning side to null (unless already changed)
  1340.             if ($examenPeriodicoPersona->getPersona() === $this) {
  1341.                 $examenPeriodicoPersona->setPersona(null);
  1342.             }
  1343.         }
  1344.         return $this;
  1345.     }
  1346.     /**
  1347.      * @return Collection<int, GHVisitaPeriodica>
  1348.      */
  1349.     public function getVisitaPeriodicaPersona(): Collection
  1350.     {
  1351.         return $this->visitaPeriodicaPersona;
  1352.     }
  1353.     public function addVisitaPeriodicaPersona(GHVisitaPeriodica $visitaPeriodicaPersona): static
  1354.     {
  1355.         if (!$this->visitaPeriodicaPersona->contains($visitaPeriodicaPersona)) {
  1356.             $this->visitaPeriodicaPersona->add($visitaPeriodicaPersona);
  1357.             $visitaPeriodicaPersona->setPersona($this);
  1358.         }
  1359.         return $this;
  1360.     }
  1361.     public function removeVisitaPeriodicaPersona(GHVisitaPeriodica $visitaPeriodicaPersona): static
  1362.     {
  1363.         if ($this->visitaPeriodicaPersona->removeElement($visitaPeriodicaPersona)) {
  1364.             // set the owning side to null (unless already changed)
  1365.             if ($visitaPeriodicaPersona->getPersona() === $this) {
  1366.                 $visitaPeriodicaPersona->setPersona(null);
  1367.             }
  1368.         }
  1369.         return $this;
  1370.     }
  1371.     /**
  1372.      * @return Collection<int, GHProcesoDisciplinario>
  1373.      */
  1374.     public function getProcesoDisciplinarioPersona(): Collection
  1375.     {
  1376.         return $this->procesoDisciplinarioPersona;
  1377.     }
  1378.     public function addProcesoDisciplinarioPersona(GHProcesoDisciplinario $procesoDisciplinarioPersona): static
  1379.     {
  1380.         if (!$this->procesoDisciplinarioPersona->contains($procesoDisciplinarioPersona)) {
  1381.             $this->procesoDisciplinarioPersona->add($procesoDisciplinarioPersona);
  1382.             $procesoDisciplinarioPersona->setPersona($this);
  1383.         }
  1384.         return $this;
  1385.     }
  1386.     public function removeProcesoDisciplinarioPersona(GHProcesoDisciplinario $procesoDisciplinarioPersona): static
  1387.     {
  1388.         if ($this->procesoDisciplinarioPersona->removeElement($procesoDisciplinarioPersona)) {
  1389.             // set the owning side to null (unless already changed)
  1390.             if ($procesoDisciplinarioPersona->getPersona() === $this) {
  1391.                 $procesoDisciplinarioPersona->setPersona(null);
  1392.             }
  1393.         }
  1394.         return $this;
  1395.     }
  1396.     /**
  1397.      * @return Collection<int, GHProcesoDisciplinario>
  1398.      */
  1399.     public function getProcesoDisciplinarioSolicita(): Collection
  1400.     {
  1401.         return $this->procesoDisciplinarioSolicita;
  1402.     }
  1403.     public function addProcesoDisciplinarioSolicitum(GHProcesoDisciplinario $procesoDisciplinarioSolicitum): static
  1404.     {
  1405.         if (!$this->procesoDisciplinarioSolicita->contains($procesoDisciplinarioSolicitum)) {
  1406.             $this->procesoDisciplinarioSolicita->add($procesoDisciplinarioSolicitum);
  1407.             $procesoDisciplinarioSolicitum->setPersonaSolicita($this);
  1408.         }
  1409.         return $this;
  1410.     }
  1411.     public function removeProcesoDisciplinarioSolicitum(GHProcesoDisciplinario $procesoDisciplinarioSolicitum): static
  1412.     {
  1413.         if ($this->procesoDisciplinarioSolicita->removeElement($procesoDisciplinarioSolicitum)) {
  1414.             // set the owning side to null (unless already changed)
  1415.             if ($procesoDisciplinarioSolicitum->getPersonaSolicita() === $this) {
  1416.                 $procesoDisciplinarioSolicitum->setPersonaSolicita(null);
  1417.             }
  1418.         }
  1419.         return $this;
  1420.     }
  1421.     /**
  1422.      * @return Collection<int, GHNovedadNomina>
  1423.      */
  1424.     public function getNovedadNomina(): Collection
  1425.     {
  1426.         return $this->novedadNomina;
  1427.     }
  1428.     public function addNovedadNomina(GHNovedadNomina $novedadNomina): static
  1429.     {
  1430.         if (!$this->novedadNomina->contains($novedadNomina)) {
  1431.             $this->novedadNomina->add($novedadNomina);
  1432.             $novedadNomina->setPersonaSolicita($this);
  1433.         }
  1434.         return $this;
  1435.     }
  1436.     public function removeNovedadNomina(GHNovedadNomina $novedadNomina): static
  1437.     {
  1438.         if ($this->novedadNomina->removeElement($novedadNomina)) {
  1439.             // set the owning side to null (unless already changed)
  1440.             if ($novedadNomina->getPersona() === $this) {
  1441.                 $novedadNomina->setPersonaSolicita(null);
  1442.             }
  1443.         }
  1444.         return $this;
  1445.     }
  1446.     /**
  1447.      * @return Collection
  1448.      */
  1449.     public function getNovedadNominaSolicita(): Collection
  1450.     {
  1451.         return $this->novedadNominaSolicita;
  1452.     }
  1453.     public function addNovedadNominaSolicita(GHNovedadNomina $novedadNomina): static
  1454.     {
  1455.         if (!$this->novedadNominaSolicita->contains($novedadNomina)) {
  1456.             $this->novedadNominaSolicita->add($novedadNomina);
  1457.             $novedadNomina->setPersona($this);
  1458.         }
  1459.         return $this;
  1460.     }
  1461.     public function removeNovedadNominaSolicita(GHNovedadNomina $novedadNomina ): static
  1462.     {
  1463.         if ($this->novedadNominaSolicita->removeElement($novedadNomina)) {
  1464.             //set the owning side to null (unless already changed)
  1465.             if ($novedadNomina->getPersona() === $this) {
  1466.                 $novedadNomina->setPersona(null);
  1467.             }
  1468.         }
  1469.         return $this;
  1470.     }
  1471.     /**
  1472.      * @return Collection<int, GHNovedadNomina>
  1473.      */
  1474.     public function getNovedadNominaJefe(): Collection
  1475.     {
  1476.         return $this->novedadNominaJefe;
  1477.     }
  1478.     public function addNovedadNominaJefe(GHNovedadNomina $novedadNominaJefe): static
  1479.     {
  1480.         if (!$this->novedadNominaJefe->contains($novedadNominaJefe)) {
  1481.             $this->novedadNominaJefe->add($novedadNominaJefe);
  1482.             $novedadNominaJefe->setJefeInmediato($this);
  1483.         }
  1484.         return $this;
  1485.     }
  1486.     public function removeNovedadNominaJefe(GHNovedadNomina $novedadNominaJefe): static
  1487.     {
  1488.         if ($this->novedadNominaJefe->removeElement($novedadNominaJefe)) {
  1489.             // set the owning side to null (unless already changed)
  1490.             if ($novedadNominaJefe->getJefeInmediato() === $this) {
  1491.                 $novedadNominaJefe->setJefeInmediato(null);
  1492.             }
  1493.         }
  1494.         return $this;
  1495.     }
  1496.     /**
  1497.      * @return Collection<int, GHDesvinculacion>
  1498.      */
  1499.     public function getDesvinculacion(): Collection
  1500.     {
  1501.         return $this->desvinculacion;
  1502.     }
  1503.     public function addDesvinculacion(GHDesvinculacion $desvinculacion): static
  1504.     {
  1505.         if (!$this->desvinculacion->contains($desvinculacion)) {
  1506.             $this->desvinculacion->add($desvinculacion);
  1507.             $desvinculacion->setPersona($this);
  1508.         }
  1509.         return $this;
  1510.     }
  1511.     public function removeDesvinculacion(GHDesvinculacion $desvinculacion): static
  1512.     {
  1513.         if ($this->desvinculacion->removeElement($desvinculacion)) {
  1514.             // set the owning side to null (unless already changed)
  1515.             if ($desvinculacion->getPersona() === $this) {
  1516.                 $desvinculacion->setPersona(null);
  1517.             }
  1518.         }
  1519.         return $this;
  1520.     }
  1521.     /**
  1522.      * @return Collection<int, JurRegistroCumplimiento>
  1523.      */
  1524.     public function getRegistroCumplimiento(): Collection
  1525.     {
  1526.         return $this->registroCumplimiento;
  1527.     }
  1528.     public function addRegistroCumplimiento(JurRegistroCumplimiento $registroCumplimiento): static
  1529.     {
  1530.         if (!$this->registroCumplimiento->contains($registroCumplimiento)) {
  1531.             $this->registroCumplimiento->add($registroCumplimiento);
  1532.             $registroCumplimiento->setPersona($this);
  1533.         }
  1534.         return $this;
  1535.     }
  1536.     public function removeRegistroCumplimiento(JurRegistroCumplimiento $registroCumplimiento): static
  1537.     {
  1538.         if ($this->registroCumplimiento->removeElement($registroCumplimiento)) {
  1539.             // set the owning side to null (unless already changed)
  1540.             if ($registroCumplimiento->getPersona() === $this) {
  1541.                 $registroCumplimiento->setPersona(null);
  1542.             }
  1543.         }
  1544.         return $this;
  1545.     }
  1546.     /**
  1547.      * @return Collection<int, GHCambioContrato>
  1548.      */
  1549.     public function getCambioContrato(): Collection
  1550.     {
  1551.         return $this->cambioContrato;
  1552.     }
  1553.     public function addCambioContrato(GHCambioContrato $cambioContrato): static
  1554.     {
  1555.         if (!$this->cambioContrato->contains($cambioContrato)) {
  1556.             $this->cambioContrato->add($cambioContrato);
  1557.             $cambioContrato->setColaborador($this);
  1558.         }
  1559.         return $this;
  1560.     }
  1561.     public function removeCambioContrato(GHCambioContrato $cambioContrato): static
  1562.     {
  1563.         if ($this->cambioContrato->removeElement($cambioContrato)) {
  1564.             // set the owning side to null (unless already changed)
  1565.             if ($cambioContrato->getColaborador() === $this) {
  1566.                 $cambioContrato->setColaborador(null);
  1567.             }
  1568.         }
  1569.         return $this;
  1570.     }
  1571.     /**
  1572.      * @return Collection<int, GHCambioContrato>
  1573.      */
  1574.     public function getSolicitaCambioContrato(): Collection
  1575.     {
  1576.         return $this->solicitaCambioContrato;
  1577.     }
  1578.     public function addSolicitaCambioContrato(GHCambioContrato $solicitaCambioContrato): static
  1579.     {
  1580.         if (!$this->solicitaCambioContrato->contains($solicitaCambioContrato)) {
  1581.             $this->solicitaCambioContrato->add($solicitaCambioContrato);
  1582.             $solicitaCambioContrato->setUsuarioSolicita($this);
  1583.         }
  1584.         return $this;
  1585.     }
  1586.     public function removeSolicitaCambioContrato(GHCambioContrato $solicitaCambioContrato): static
  1587.     {
  1588.         if ($this->solicitaCambioContrato->removeElement($solicitaCambioContrato)) {
  1589.             // set the owning side to null (unless already changed)
  1590.             if ($solicitaCambioContrato->getUsuarioSolicita() === $this) {
  1591.                 $solicitaCambioContrato->setUsuarioSolicita(null);
  1592.             }
  1593.         }
  1594.         return $this;
  1595.     }
  1596.     /**
  1597.      * @return Collection<int, RFPaquete>
  1598.      */
  1599.     public function getPaqueteRecepciona(): Collection
  1600.     {
  1601.         return $this->paqueteRecepciona;
  1602.     }
  1603.     public function addPaqueteRecepciona(RFPaquete $paqueteRecepciona): static
  1604.     {
  1605.         if (!$this->paqueteRecepciona->contains($paqueteRecepciona)) {
  1606.             $this->paqueteRecepciona->add($paqueteRecepciona);
  1607.             $paqueteRecepciona->setPersonaRecibe($this);
  1608.         }
  1609.         return $this;
  1610.     }
  1611.     public function removePaqueteRecepciona(RFPaquete $paqueteRecepciona): static
  1612.     {
  1613.         if ($this->paqueteRecepciona->removeElement($paqueteRecepciona)) {
  1614.             // set the owning side to null (unless already changed)
  1615.             if ($paqueteRecepciona->getPersonaRecibe() === $this) {
  1616.                 $paqueteRecepciona->setPersonaRecibe(null);
  1617.             }
  1618.         }
  1619.         return $this;
  1620.     }
  1621.     /**
  1622.      * @return Collection<int, RFPaquete>
  1623.      */
  1624.     public function getPaqueteDestinatario(): Collection
  1625.     {
  1626.         return $this->paqueteDestinatario;
  1627.     }
  1628.     public function addPaqueteDestinatario(RFPaquete $paqueteDestinatario): static
  1629.     {
  1630.         if (!$this->paqueteDestinatario->contains($paqueteDestinatario)) {
  1631.             $this->paqueteDestinatario->add($paqueteDestinatario);
  1632.             $paqueteDestinatario->setPersonaDestinatario($this);
  1633.         }
  1634.         return $this;
  1635.     }
  1636.     public function removePaqueteDestinatario(RFPaquete $paqueteDestinatario): static
  1637.     {
  1638.         if ($this->paqueteDestinatario->removeElement($paqueteDestinatario)) {
  1639.             // set the owning side to null (unless already changed)
  1640.             if ($paqueteDestinatario->getPersonaDestinatario() === $this) {
  1641.                 $paqueteDestinatario->setPersonaDestinatario(null);
  1642.             }
  1643.         }
  1644.         return $this;
  1645.     }
  1646.     /**
  1647.      * @return Collection<int, RFPaquete>
  1648.      */
  1649.     public function getPaqueteReclama(): Collection
  1650.     {
  1651.         return $this->paqueteReclama;
  1652.     }
  1653.     public function addPaqueteReclama(RFPaquete $paqueteReclama): static
  1654.     {
  1655.         if (!$this->paqueteReclama->contains($paqueteReclama)) {
  1656.             $this->paqueteReclama->add($paqueteReclama);
  1657.             $paqueteReclama->setPersonaReclama($this);
  1658.         }
  1659.         return $this;
  1660.     }
  1661.     public function removePaqueteReclama(RFPaquete $paqueteReclama): static
  1662.     {
  1663.         if ($this->paqueteReclama->removeElement($paqueteReclama)) {
  1664.             // set the owning side to null (unless already changed)
  1665.             if ($paqueteReclama->getPersonaReclama() === $this) {
  1666.                 $paqueteReclama->setPersonaReclama(null);
  1667.             }
  1668.         }
  1669.         return $this;
  1670.     }
  1671.     /**
  1672.      * @return Collection<int, RFPaquete>
  1673.      */
  1674.     public function getPaqueteEntrega(): Collection
  1675.     {
  1676.         return $this->paqueteEntrega;
  1677.     }
  1678.     public function addPaqueteEntrega(RFPaquete $paqueteEntrega): static
  1679.     {
  1680.         if (!$this->paqueteEntrega->contains($paqueteEntrega)) {
  1681.             $this->paqueteEntrega->add($paqueteEntrega);
  1682.             $paqueteEntrega->setPersonaEntrega($this);
  1683.         }
  1684.         return $this;
  1685.     }
  1686.     public function removePaqueteEntrega(RFPaquete $paqueteEntrega): static
  1687.     {
  1688.         if ($this->paqueteEntrega->removeElement($paqueteEntrega)) {
  1689.             // set the owning side to null (unless already changed)
  1690.             if ($paqueteEntrega->getPersonaEntrega() === $this) {
  1691.                 $paqueteEntrega->setPersonaEntrega(null);
  1692.             }
  1693.         }
  1694.         return $this;
  1695.     }
  1696.     /**
  1697.      * @return Collection<int, RFDiligencia>
  1698.      */
  1699.     public function getSolicitaDiligencia(): Collection
  1700.     {
  1701.         return $this->solicitaDiligencia;
  1702.     }
  1703.     public function addSolicitaDiligencium(RFDiligencia $solicitaDiligencium): static
  1704.     {
  1705.         if (!$this->solicitaDiligencia->contains($solicitaDiligencium)) {
  1706.             $this->solicitaDiligencia->add($solicitaDiligencium);
  1707.             $solicitaDiligencium->setPersonaSolicita($this);
  1708.         }
  1709.         return $this;
  1710.     }
  1711.     public function removeSolicitaDiligencium(RFDiligencia $solicitaDiligencium): static
  1712.     {
  1713.         if ($this->solicitaDiligencia->removeElement($solicitaDiligencium)) {
  1714.             // set the owning side to null (unless already changed)
  1715.             if ($solicitaDiligencium->getPersonaSolicita() === $this) {
  1716.                 $solicitaDiligencium->setPersonaSolicita(null);
  1717.             }
  1718.         }
  1719.         return $this;
  1720.     }
  1721.     /**
  1722.      * @return Collection<int, RFDiligencia>
  1723.      */
  1724.     public function getDiligenciaComex(): Collection
  1725.     {
  1726.         return $this->diligenciaComex;
  1727.     }
  1728.     public function addDiligenciaComex(RFDiligencia $diligenciaComex): static
  1729.     {
  1730.         if (!$this->diligenciaComex->contains($diligenciaComex)) {
  1731.             $this->diligenciaComex->add($diligenciaComex);
  1732.             $diligenciaComex->setAuxiliarComex($this);
  1733.         }
  1734.         return $this;
  1735.     }
  1736.     public function removeDiligenciaComex(RFDiligencia $diligenciaComex): static
  1737.     {
  1738.         if ($this->diligenciaComex->removeElement($diligenciaComex)) {
  1739.             // set the owning side to null (unless already changed)
  1740.             if ($diligenciaComex->getAuxiliarComex() === $this) {
  1741.                 $diligenciaComex->setAuxiliarComex(null);
  1742.             }
  1743.         }
  1744.         return $this;
  1745.     }
  1746.     /**
  1747.      * @return Collection<int, RFDiligencia>
  1748.      */
  1749.     public function getAutorizaDiligencia(): Collection
  1750.     {
  1751.         return $this->autorizaDiligencia;
  1752.     }
  1753.     public function addAutorizaDiligencium(RFDiligencia $autorizaDiligencium): static
  1754.     {
  1755.         if (!$this->autorizaDiligencia->contains($autorizaDiligencium)) {
  1756.             $this->autorizaDiligencia->add($autorizaDiligencium);
  1757.             $autorizaDiligencium->setUsuarioAutoriza($this);
  1758.         }
  1759.         return $this;
  1760.     }
  1761.     public function removeAutorizaDiligencium(RFDiligencia $autorizaDiligencium): static
  1762.     {
  1763.         if ($this->autorizaDiligencia->removeElement($autorizaDiligencium)) {
  1764.             // set the owning side to null (unless already changed)
  1765.             if ($autorizaDiligencium->getUsuarioAutoriza() === $this) {
  1766.                 $autorizaDiligencium->setUsuarioAutoriza(null);
  1767.             }
  1768.         }
  1769.         return $this;
  1770.     }
  1771.     /**
  1772.      * @return Collection<int, RFDiligencia>
  1773.      */
  1774.     public function getDiligenciaAsignada(): Collection
  1775.     {
  1776.         return $this->diligenciaAsignada;
  1777.     }
  1778.     public function addDiligenciaAsignada(RFDiligencia $diligenciaAsignada): static
  1779.     {
  1780.         if (!$this->diligenciaAsignada->contains($diligenciaAsignada)) {
  1781.             $this->diligenciaAsignada->add($diligenciaAsignada);
  1782.             $diligenciaAsignada->setMensajero($this);
  1783.         }
  1784.         return $this;
  1785.     }
  1786.     public function removeDiligenciaAsignada(RFDiligencia $diligenciaAsignada): static
  1787.     {
  1788.         if ($this->diligenciaAsignada->removeElement($diligenciaAsignada)) {
  1789.             // set the owning side to null (unless already changed)
  1790.             if ($diligenciaAsignada->getMensajero() === $this) {
  1791.                 $diligenciaAsignada->setMensajero(null);
  1792.             }
  1793.         }
  1794.         return $this;
  1795.     }
  1796.     /**
  1797.      * @return Collection<int, ParNovedadDiligencia>
  1798.      */
  1799.     public function getCancelaDiligencia(): Collection
  1800.     {
  1801.         return $this->cancelaDiligencia;
  1802.     }
  1803.     public function addCancelaDiligencium(RFDiligencia $cancelaDiligencium): static
  1804.     {
  1805.         if (!$this->cancelaDiligencia->contains($cancelaDiligencium)) {
  1806.             $this->cancelaDiligencia->add($cancelaDiligencium);
  1807.             $cancelaDiligencium->setAutorizaCancelacion($this);
  1808.         }
  1809.         return $this;
  1810.     }
  1811.     public function removeCancelaDiligencium(RFDiligencia $cancelaDiligencium): static
  1812.     {
  1813.         if ($this->cancelaDiligencia->removeElement($cancelaDiligencium)) {
  1814.             // set the owning side to null (unless already changed)
  1815.             if ($cancelaDiligencium->getAutorizaCancelacion() === $this) {
  1816.                 $cancelaDiligencium->setAutorizaCancelacion(null);
  1817.             }
  1818.         }
  1819.         return $this;
  1820.     }
  1821.     /**
  1822.      * @return Collection<int, RFEnvioCorrespondencia>
  1823.      */
  1824.     public function getRemitenteCorrespondencia(): Collection
  1825.     {
  1826.         return $this->remitenteCorrespondencia;
  1827.     }
  1828.     public function addRemitenteCorrespondencium(RFEnvioCorrespondencia $remitenteCorrespondencium): static
  1829.     {
  1830.         if (!$this->remitenteCorrespondencia->contains($remitenteCorrespondencium)) {
  1831.             $this->remitenteCorrespondencia->add($remitenteCorrespondencium);
  1832.             $remitenteCorrespondencium->setRemitente($this);
  1833.         }
  1834.         return $this;
  1835.     }
  1836.     public function removeRemitenteCorrespondencium(RFEnvioCorrespondencia $remitenteCorrespondencium): static
  1837.     {
  1838.         if ($this->remitenteCorrespondencia->removeElement($remitenteCorrespondencium)) {
  1839.             // set the owning side to null (unless already changed)
  1840.             if ($remitenteCorrespondencium->getRemitente() === $this) {
  1841.                 $remitenteCorrespondencium->setRemitente(null);
  1842.             }
  1843.         }
  1844.         return $this;
  1845.     }
  1846.     /**
  1847.      * @return Collection<int, RFEnvioCorrespondencia>
  1848.      */
  1849.     public function getGuiaEnvioCorrespondencia(): Collection
  1850.     {
  1851.         return $this->guiaEnvioCorrespondencia;
  1852.     }
  1853.     public function addGuiaEnvioCorrespondencium(RFEnvioCorrespondencia $guiaEnvioCorrespondencium): static
  1854.     {
  1855.         if (!$this->guiaEnvioCorrespondencia->contains($guiaEnvioCorrespondencium)) {
  1856.             $this->guiaEnvioCorrespondencia->add($guiaEnvioCorrespondencium);
  1857.             $guiaEnvioCorrespondencium->setUsuarioGeneraGuia($this);
  1858.         }
  1859.         return $this;
  1860.     }
  1861.     public function removeGuiaEnvioCorrespondencium(RFEnvioCorrespondencia $guiaEnvioCorrespondencium): static
  1862.     {
  1863.         if ($this->guiaEnvioCorrespondencia->removeElement($guiaEnvioCorrespondencium)) {
  1864.             // set the owning side to null (unless already changed)
  1865.             if ($guiaEnvioCorrespondencium->getUsuarioGeneraGuia() === $this) {
  1866.                 $guiaEnvioCorrespondencium->setUsuarioGeneraGuia(null);
  1867.             }
  1868.         }
  1869.         return $this;
  1870.     }
  1871.  
  1872.     /**
  1873.      * @return Collection<int, RFSolicitudSuministro>
  1874.      */
  1875.     public function getSolicitudSuministro(): Collection
  1876.     {
  1877.         return $this->solicitudSuministro;
  1878.     }
  1879.     public function addSolicitudSuministro(RFSolicitudSuministro $solicitudSuministro): static
  1880.     {
  1881.         if (!$this->solicitudSuministro->contains($solicitudSuministro)) {
  1882.             $this->solicitudSuministro->add($solicitudSuministro);
  1883.             $solicitudSuministro->setUsuarioSolicita($this);
  1884.         }
  1885.         return $this;
  1886.     }
  1887.     public function removeSolicitudSuministro(RFSolicitudSuministro $solicitudSuministro): static
  1888.     {
  1889.         if ($this->solicitudSuministro->removeElement($solicitudSuministro)) {
  1890.             // set the owning side to null (unless already changed)
  1891.             if ($solicitudSuministro->getUsuarioSolicita() === $this) {
  1892.                 $solicitudSuministro->setUsuarioSolicita(null);
  1893.             }
  1894.         }
  1895.         return $this;
  1896.     }
  1897.     /**
  1898.      * @return Collection<int, RFSolicitudSuministro>
  1899.      */
  1900.     public function getRecibeSolicitudSuministro(): Collection
  1901.     {
  1902.         return $this->recibeSolicitudSuministro;
  1903.     }
  1904.     public function addRecibeSolicitudSuministro(RFSolicitudSuministro $recibeSolicitudSuministro): static
  1905.     {
  1906.         if (!$this->recibeSolicitudSuministro->contains($recibeSolicitudSuministro)) {
  1907.             $this->recibeSolicitudSuministro->add($recibeSolicitudSuministro);
  1908.             $recibeSolicitudSuministro->setUsuarioRecibe($this);
  1909.         }
  1910.         return $this;
  1911.     }
  1912.     public function removeRecibeSolicitudSuministro(RFSolicitudSuministro $recibeSolicitudSuministro): static
  1913.     {
  1914.         if ($this->recibeSolicitudSuministro->removeElement($recibeSolicitudSuministro)) {
  1915.             // set the owning side to null (unless already changed)
  1916.             if ($recibeSolicitudSuministro->getUsuarioRecibe() === $this) {
  1917.                 $recibeSolicitudSuministro->setUsuarioRecibe(null);
  1918.             }
  1919.         }
  1920.         return $this;
  1921.     }
  1922.     public function getSede(): ?TerSedeEmpresa
  1923.     {
  1924.         return $this->sede;
  1925.     }
  1926.     public function setSede(?TerSedeEmpresa $sede): static
  1927.     {
  1928.         $this->sede $sede;
  1929.         return $this;
  1930.     }
  1931.     /**
  1932.      * @return Collection<int, RFFUID>
  1933.      */
  1934.     public function getResponsableFUID(): Collection
  1935.     {
  1936.         return $this->responsableFUID;
  1937.     }
  1938.     public function addResponsableFUID(RFFUID $responsableFUID): static
  1939.     {
  1940.         if (!$this->responsableFUID->contains($responsableFUID)) {
  1941.             $this->responsableFUID->add($responsableFUID);
  1942.             $responsableFUID->setUsuarioResponsable($this);
  1943.         }
  1944.         return $this;
  1945.     }
  1946.     public function removeResponsableFUID(RFFUID $responsableFUID): static
  1947.     {
  1948.         if ($this->responsableFUID->removeElement($responsableFUID)) {
  1949.             // set the owning side to null (unless already changed)
  1950.             if ($responsableFUID->getUsuarioResponsable() === $this) {
  1951.                 $responsableFUID->setUsuarioResponsable(null);
  1952.             }
  1953.         }
  1954.         return $this;
  1955.     }
  1956.     /**
  1957.      * @return Collection<int, RFInventarioDocumentalGesHum>
  1958.      */
  1959.     public function getInventarioDocumentalGesHum(): Collection
  1960.     {
  1961.         return $this->inventarioDocumentalGesHum;
  1962.     }
  1963.     public function addInventarioDocumentalGesHum(RFInventarioDocumentalGesHum $inventarioDocumentalGesHum): static
  1964.     {
  1965.         if (!$this->inventarioDocumentalGesHum->contains($inventarioDocumentalGesHum)) {
  1966.             $this->inventarioDocumentalGesHum->add($inventarioDocumentalGesHum);
  1967.             $inventarioDocumentalGesHum->setPersona($this);
  1968.         }
  1969.         return $this;
  1970.     }
  1971.     public function removeInventarioDocumentalGesHum(RFInventarioDocumentalGesHum $inventarioDocumentalGesHum): static
  1972.     {
  1973.         if ($this->inventarioDocumentalGesHum->removeElement($inventarioDocumentalGesHum)) {
  1974.             // set the owning side to null (unless already changed)
  1975.             if ($inventarioDocumentalGesHum->getPersona() === $this) {
  1976.                 $inventarioDocumentalGesHum->setPersona(null);
  1977.             }
  1978.         }
  1979.         return $this;
  1980.     }
  1981.     /**
  1982.      * @return Collection<int, RFFUID>
  1983.      */
  1984.     public function getUsuarioRecibeFUID(): Collection
  1985.     {
  1986.         return $this->usuarioRecibeFUID;
  1987.     }
  1988.     public function addUsuarioRecibeFUID(RFFUID $usuarioRecibeFUID): static
  1989.     {
  1990.         if (!$this->usuarioRecibeFUID->contains($usuarioRecibeFUID)) {
  1991.             $this->usuarioRecibeFUID->add($usuarioRecibeFUID);
  1992.             $usuarioRecibeFUID->setUsuarioRecibe($this);
  1993.         }
  1994.         return $this;
  1995.     }
  1996.     public function removeUsuarioRecibeFUID(RFFUID $usuarioRecibeFUID): static
  1997.     {
  1998.         if ($this->usuarioRecibeFUID->removeElement($usuarioRecibeFUID)) {
  1999.             // set the owning side to null (unless already changed)
  2000.             if ($usuarioRecibeFUID->getUsuarioRecibe() === $this) {
  2001.                 $usuarioRecibeFUID->setUsuarioRecibe(null);
  2002.             }
  2003.         }
  2004.         return $this;
  2005.     }
  2006.     /**
  2007.      * @return Collection<int, RFFUID>
  2008.      */
  2009.     public function getUsuarioElaboraFUID(): Collection
  2010.     {
  2011.         return $this->usuarioElaboraFUID;
  2012.     }
  2013.     public function addUsuarioElaboraFUID(RFFUID $usuarioElaboraFUID): static
  2014.     {
  2015.         if (!$this->usuarioElaboraFUID->contains($usuarioElaboraFUID)) {
  2016.             $this->usuarioElaboraFUID->add($usuarioElaboraFUID);
  2017.             $usuarioElaboraFUID->setUsuarioElabora($this);
  2018.         }
  2019.         return $this;
  2020.     }
  2021.     public function removeUsuarioElaboraFUID(RFFUID $usuarioElaboraFUID): static
  2022.     {
  2023.         if ($this->usuarioElaboraFUID->removeElement($usuarioElaboraFUID)) {
  2024.             // set the owning side to null (unless already changed)
  2025.             if ($usuarioElaboraFUID->getUsuarioElabora() === $this) {
  2026.                 $usuarioElaboraFUID->setUsuarioElabora(null);
  2027.             }
  2028.         }
  2029.         return $this;
  2030.     }
  2031.     /**
  2032.      * @return Collection<int, RFSolicitudDocumento>
  2033.      */
  2034.     public function getGeneraSolicitudDocumento(): Collection
  2035.     {
  2036.         return $this->generaSolicitudDocumento;
  2037.     }
  2038.     public function addGeneraSolicitudDocumento(RFSolicitudDocumento $generaSolicitudDocumento): static
  2039.     {
  2040.         if (!$this->generaSolicitudDocumento->contains($generaSolicitudDocumento)) {
  2041.             $this->generaSolicitudDocumento->add($generaSolicitudDocumento);
  2042.             $generaSolicitudDocumento->setUsuarioSolicita($this);
  2043.         }
  2044.         return $this;
  2045.     }
  2046.     public function removeGeneraSolicitudDocumento(RFSolicitudDocumento $generaSolicitudDocumento): static
  2047.     {
  2048.         if ($this->generaSolicitudDocumento->removeElement($generaSolicitudDocumento)) {
  2049.             // set the owning side to null (unless already changed)
  2050.             if ($generaSolicitudDocumento->getUsuarioSolicita() === $this) {
  2051.                 $generaSolicitudDocumento->setUsuarioSolicita(null);
  2052.             }
  2053.         }
  2054.         return $this;
  2055.     }
  2056.     /**
  2057.      * @return Collection<int, RFSolicitudDocumento>
  2058.      */
  2059.     public function getAtiendeSolicitudDocumento(): Collection
  2060.     {
  2061.         return $this->atiendeSolicitudDocumento;
  2062.     }
  2063.     public function addAtiendeSolicitudDocumento(RFSolicitudDocumento $atiendeSolicitudDocumento): static
  2064.     {
  2065.         if (!$this->atiendeSolicitudDocumento->contains($atiendeSolicitudDocumento)) {
  2066.             $this->atiendeSolicitudDocumento->add($atiendeSolicitudDocumento);
  2067.             $atiendeSolicitudDocumento->setUsuarioAtiende($this);
  2068.         }
  2069.         return $this;
  2070.     }
  2071.     public function removeAtiendeSolicitudDocumento(RFSolicitudDocumento $atiendeSolicitudDocumento): static
  2072.     {
  2073.         if ($this->atiendeSolicitudDocumento->removeElement($atiendeSolicitudDocumento)) {
  2074.             // set the owning side to null (unless already changed)
  2075.             if ($atiendeSolicitudDocumento->getUsuarioAtiende() === $this) {
  2076.                 $atiendeSolicitudDocumento->setUsuarioAtiende(null);
  2077.             }
  2078.         }
  2079.         return $this;
  2080.     }
  2081.     /**
  2082.      * @return Collection<int, RFSolicitudDocumento>
  2083.      */
  2084.     public function getRecibeSolicitudDocumento(): Collection
  2085.     {
  2086.         return $this->recibeSolicitudDocumento;
  2087.     }
  2088.     public function addRecibeSolicitudDocumento(RFSolicitudDocumento $recibeSolicitudDocumento): static
  2089.     {
  2090.         if (!$this->recibeSolicitudDocumento->contains($recibeSolicitudDocumento)) {
  2091.             $this->recibeSolicitudDocumento->add($recibeSolicitudDocumento);
  2092.             $recibeSolicitudDocumento->setUsuarioRecibe($this);
  2093.         }
  2094.         return $this;
  2095.     }
  2096.     public function removeRecibeSolicitudDocumento(RFSolicitudDocumento $recibeSolicitudDocumento): static
  2097.     {
  2098.         if ($this->recibeSolicitudDocumento->removeElement($recibeSolicitudDocumento)) {
  2099.             // set the owning side to null (unless already changed)
  2100.             if ($recibeSolicitudDocumento->getUsuarioRecibe() === $this) {
  2101.                 $recibeSolicitudDocumento->setUsuarioRecibe(null);
  2102.             }
  2103.         }
  2104.         return $this;
  2105.     }
  2106.     /**
  2107.      * @return Collection<int, RFCambioCustodiaDocumento>
  2108.      */
  2109.     public function getResponsableCambioCustodia(): Collection
  2110.     {
  2111.         return $this->responsableCambioCustodia;
  2112.     }
  2113.     public function addResponsableCambioCustodium(RFCambioCustodiaDocumento $responsableCambioCustodium): static
  2114.     {
  2115.         if (!$this->responsableCambioCustodia->contains($responsableCambioCustodium)) {
  2116.             $this->responsableCambioCustodia->add($responsableCambioCustodium);
  2117.             $responsableCambioCustodium->setNuevoUsuarioResponsable($this);
  2118.         }
  2119.         return $this;
  2120.     }
  2121.     public function removeResponsableCambioCustodium(RFCambioCustodiaDocumento $responsableCambioCustodium): static
  2122.     {
  2123.         if ($this->responsableCambioCustodia->removeElement($responsableCambioCustodium)) {
  2124.             // set the owning side to null (unless already changed)
  2125.             if ($responsableCambioCustodium->getNuevoUsuarioResponsable() === $this) {
  2126.                 $responsableCambioCustodium->setNuevoUsuarioResponsable(null);
  2127.             }
  2128.         }
  2129.         return $this;
  2130.     }
  2131.     /**
  2132.      * @return Collection<int, RFProrrogaSolicitudDocumento>
  2133.      */
  2134.     public function getSolicitaProrrogaSolicitudDocumento(): Collection
  2135.     {
  2136.         return $this->solicitaProrrogaSolicitudDocumento;
  2137.     }
  2138.     public function addSolicitaProrrogaSolicitudDocumento(RFProrrogaSolicitudDocumento $solicitaProrrogaSolicitudDocumento): static
  2139.     {
  2140.         if (!$this->solicitaProrrogaSolicitudDocumento->contains($solicitaProrrogaSolicitudDocumento)) {
  2141.             $this->solicitaProrrogaSolicitudDocumento->add($solicitaProrrogaSolicitudDocumento);
  2142.             $solicitaProrrogaSolicitudDocumento->setUsuarioSolicita($this);
  2143.         }
  2144.         return $this;
  2145.     }
  2146.     public function removeSolicitaProrrogaSolicitudDocumento(RFProrrogaSolicitudDocumento $solicitaProrrogaSolicitudDocumento): static
  2147.     {
  2148.         if ($this->solicitaProrrogaSolicitudDocumento->removeElement($solicitaProrrogaSolicitudDocumento)) {
  2149.             // set the owning side to null (unless already changed)
  2150.             if ($solicitaProrrogaSolicitudDocumento->getUsuarioSolicita() === $this) {
  2151.                 $solicitaProrrogaSolicitudDocumento->setUsuarioSolicita(null);
  2152.             }
  2153.         }
  2154.         return $this;
  2155.     }
  2156.     /**
  2157.      * @return Collection<int, RFCambioCustodiaDocumento>
  2158.      */
  2159.     public function getSolicitaCambioCustodiaDocumento(): Collection
  2160.     {
  2161.         return $this->solicitaCambioCustodiaDocumento;
  2162.     }
  2163.     public function addSolicitaCambioCustodiaDocumento(RFCambioCustodiaDocumento $solicitaCambioCustodiaDocumento): static
  2164.     {
  2165.         if (!$this->solicitaCambioCustodiaDocumento->contains($solicitaCambioCustodiaDocumento)) {
  2166.             $this->solicitaCambioCustodiaDocumento->add($solicitaCambioCustodiaDocumento);
  2167.             $solicitaCambioCustodiaDocumento->setUsuarioSolicita($this);
  2168.         }
  2169.         return $this;
  2170.     }
  2171.     public function removeSolicitaCambioCustodiaDocumento(RFCambioCustodiaDocumento $solicitaCambioCustodiaDocumento): static
  2172.     {
  2173.         if ($this->solicitaCambioCustodiaDocumento->removeElement($solicitaCambioCustodiaDocumento)) {
  2174.             // set the owning side to null (unless already changed)
  2175.             if ($solicitaCambioCustodiaDocumento->getUsuarioSolicita() === $this) {
  2176.                 $solicitaCambioCustodiaDocumento->setUsuarioSolicita(null);
  2177.             }
  2178.         }
  2179.         return $this;
  2180.     }
  2181.     /**
  2182.      * @return Collection<int, RFSolicitudDocumento>
  2183.      */
  2184.     public function getEntregaSolicitudDocumento(): Collection
  2185.     {
  2186.         return $this->entregaSolicitudDocumento;
  2187.     }
  2188.     public function addEntregaSolicitudDocumento(RFSolicitudDocumento $entregaSolicitudDocumento): static
  2189.     {
  2190.         if (!$this->entregaSolicitudDocumento->contains($entregaSolicitudDocumento)) {
  2191.             $this->entregaSolicitudDocumento->add($entregaSolicitudDocumento);
  2192.             $entregaSolicitudDocumento->setUsuarioEntrega($this);
  2193.         }
  2194.         return $this;
  2195.     }
  2196.     public function removeEntregaSolicitudDocumento(RFSolicitudDocumento $entregaSolicitudDocumento): static
  2197.     {
  2198.         if ($this->entregaSolicitudDocumento->removeElement($entregaSolicitudDocumento)) {
  2199.             // set the owning side to null (unless already changed)
  2200.             if ($entregaSolicitudDocumento->getUsuarioEntrega() === $this) {
  2201.                 $entregaSolicitudDocumento->setUsuarioEntrega(null);
  2202.             }
  2203.         }
  2204.         return $this;
  2205.     }
  2206.     /**
  2207.      * @return Collection<int, RFSolicitudDocumento>
  2208.      */
  2209.     public function getConfirmaEntregaSolicitudDocumento(): Collection
  2210.     {
  2211.         return $this->confirmaEntregaSolicitudDocumento;
  2212.     }
  2213.     public function addConfirmaEntregaSolicitudDocumento(RFSolicitudDocumento $confirmaEntregaSolicitudDocumento): static
  2214.     {
  2215.         if (!$this->confirmaEntregaSolicitudDocumento->contains($confirmaEntregaSolicitudDocumento)) {
  2216.             $this->confirmaEntregaSolicitudDocumento->add($confirmaEntregaSolicitudDocumento);
  2217.             $confirmaEntregaSolicitudDocumento->setUsuarioConfirmaDevolucion($this);
  2218.         }
  2219.         return $this;
  2220.     }
  2221.     public function removeConfirmaEntregaSolicitudDocumento(RFSolicitudDocumento $confirmaEntregaSolicitudDocumento): static
  2222.     {
  2223.         if ($this->confirmaEntregaSolicitudDocumento->removeElement($confirmaEntregaSolicitudDocumento)) {
  2224.             // set the owning side to null (unless already changed)
  2225.             if ($confirmaEntregaSolicitudDocumento->getUsuarioConfirmaDevolucion() === $this) {
  2226.                 $confirmaEntregaSolicitudDocumento->setUsuarioConfirmaDevolucion(null);
  2227.             }
  2228.         }
  2229.         return $this;
  2230.     }
  2231.     /**
  2232.      * @return Collection<int, RFSolicitudDocumento>
  2233.      */
  2234.     public function getDevolucionaSolicitudDocumento(): Collection
  2235.     {
  2236.         return $this->devolucionaSolicitudDocumento;
  2237.     }
  2238.     public function addDevolucionaSolicitudDocumento(RFSolicitudDocumento $devolucionaSolicitudDocumento): static
  2239.     {
  2240.         if (!$this->devolucionaSolicitudDocumento->contains($devolucionaSolicitudDocumento)) {
  2241.             $this->devolucionaSolicitudDocumento->add($devolucionaSolicitudDocumento);
  2242.             $devolucionaSolicitudDocumento->setUsuarioDevoluciona($this);
  2243.         }
  2244.         return $this;
  2245.     }
  2246.     public function removeDevolucionaSolicitudDocumento(RFSolicitudDocumento $devolucionaSolicitudDocumento): static
  2247.     {
  2248.         if ($this->devolucionaSolicitudDocumento->removeElement($devolucionaSolicitudDocumento)) {
  2249.             // set the owning side to null (unless already changed)
  2250.             if ($devolucionaSolicitudDocumento->getUsuarioDevoluciona() === $this) {
  2251.                 $devolucionaSolicitudDocumento->setUsuarioDevoluciona(null);
  2252.             }
  2253.         }
  2254.         return $this;
  2255.     }
  2256.     /**
  2257.      * @return Collection<int, GHInduccionProceso>
  2258.      */
  2259.     public function getInduccionProcesos(): Collection
  2260.     {
  2261.         return $this->induccionProcesos;
  2262.     }
  2263.     public function addInduccionProceso(GHInduccionProceso $induccionProceso): static
  2264.     {
  2265.         if (!$this->induccionProcesos->contains($induccionProceso)) {
  2266.             $this->induccionProcesos->add($induccionProceso);
  2267.             $induccionProceso->setResponsable($this);
  2268.         }
  2269.         return $this;
  2270.     }
  2271.     public function removeInduccionProceso(GHInduccionProceso $induccionProceso): static
  2272.     {
  2273.         if ($this->induccionProcesos->removeElement($induccionProceso)) {
  2274.             // set the owning side to null (unless already changed)
  2275.             if ($induccionProceso->getResponsable() === $this) {
  2276.                 $induccionProceso->setResponsable(null);
  2277.             }
  2278.         }
  2279.         return $this;
  2280.     }
  2281.     /**
  2282.      * @return Collection<int, GHRegistroInscripcion>
  2283.      */
  2284.     public function getRegistroInscripcionSolicitante(): Collection
  2285.     {
  2286.         return $this->registroInscripcionSolicitante;
  2287.     }
  2288.     public function addRegistroInscripcionSolicitante(GHRegistroInscripcion $registroInscripcionSolicitante): static
  2289.     {
  2290.         if (!$this->registroInscripcionSolicitante->contains($registroInscripcionSolicitante)) {
  2291.             $this->registroInscripcionSolicitante->add($registroInscripcionSolicitante);
  2292.             $registroInscripcionSolicitante->setSolicitante($this);
  2293.         }
  2294.         return $this;
  2295.     }
  2296.     public function removeRegistroInscripcionSolicitante(GHRegistroInscripcion $registroInscripcionSolicitante): static
  2297.     {
  2298.         if ($this->registroInscripcionSolicitante->removeElement($registroInscripcionSolicitante)) {
  2299.             // set the owning side to null (unless already changed)
  2300.             if ($registroInscripcionSolicitante->getSolicitante() === $this) {
  2301.                 $registroInscripcionSolicitante->setSolicitante(null);
  2302.             }
  2303.         }
  2304.         return $this;
  2305.     }
  2306.     /**
  2307.      * @return Collection<int, GHEntrenamientoProceso>
  2308.      */
  2309.     public function getEntrenamientoProcesos(): Collection
  2310.     {
  2311.         return $this->entrenamientoProcesos;
  2312.     }
  2313.     public function addEntrenamientoProceso(GHEntrenamientoProceso $entrenamientoProceso): static
  2314.     {
  2315.         if (!$this->entrenamientoProcesos->contains($entrenamientoProceso)) {
  2316.             $this->entrenamientoProcesos->add($entrenamientoProceso);
  2317.             $entrenamientoProceso->setResponsable($this);
  2318.         }
  2319.         return $this;
  2320.     }
  2321.     public function removeEntrenamientoProceso(GHEntrenamientoProceso $entrenamientoProceso): static
  2322.     {
  2323.         if ($this->entrenamientoProcesos->removeElement($entrenamientoProceso)) {
  2324.             // set the owning side to null (unless already changed)
  2325.             if ($entrenamientoProceso->getResponsable() === $this) {
  2326.                 $entrenamientoProceso->setResponsable(null);
  2327.             }
  2328.         }
  2329.         return $this;
  2330.     }
  2331.     /**
  2332.      * @return Collection<int, GHExamenPeriodico>
  2333.      */
  2334.     public function getExamenPeriodicoNotificacion(): Collection
  2335.     {
  2336.         return $this->examenPeriodicoNotificacion;
  2337.     }
  2338.     public function addExamenPeriodicoNotificacion(GHExamenPeriodico $examenPeriodicoNotificacion): static
  2339.     {
  2340.         if (!$this->examenPeriodicoNotificacion->contains($examenPeriodicoNotificacion)) {
  2341.             $this->examenPeriodicoNotificacion->add($examenPeriodicoNotificacion);
  2342.             $examenPeriodicoNotificacion->setColaboradorNotificacion($this);
  2343.         }
  2344.         return $this;
  2345.     }
  2346.     public function removeExamenPeriodicoNotificacion(GHExamenPeriodico $examenPeriodicoNotificacion): static
  2347.     {
  2348.         if ($this->examenPeriodicoNotificacion->removeElement($examenPeriodicoNotificacion)) {
  2349.             // set the owning side to null (unless already changed)
  2350.             if ($examenPeriodicoNotificacion->getColaboradorNotificacion() === $this) {
  2351.                 $examenPeriodicoNotificacion->setColaboradorNotificacion(null);
  2352.             }
  2353.         }
  2354.         return $this;
  2355.     }
  2356.     /**
  2357.      * @return Collection<int, GHVisitaPeriodica>
  2358.      */
  2359.     public function getVisitaPeriodicaNotificacion(): Collection
  2360.     {
  2361.         return $this->visitaPeriodicaNotificacion;
  2362.     }
  2363.     public function addVisitaPeriodicaNotificacion(GHVisitaPeriodica $visitaPeriodicaNotificacion): static
  2364.     {
  2365.         if (!$this->visitaPeriodicaNotificacion->contains($visitaPeriodicaNotificacion)) {
  2366.             $this->visitaPeriodicaNotificacion->add($visitaPeriodicaNotificacion);
  2367.             $visitaPeriodicaNotificacion->setColaboradorNotificacion($this);
  2368.         }
  2369.         return $this;
  2370.     }
  2371.     public function removeVisitaPeriodicaNotificacion(GHVisitaPeriodica $visitaPeriodicaNotificacion): static
  2372.     {
  2373.         if ($this->visitaPeriodicaNotificacion->removeElement($visitaPeriodicaNotificacion)) {
  2374.             // set the owning side to null (unless already changed)
  2375.             if ($visitaPeriodicaNotificacion->getColaboradorNotificacion() === $this) {
  2376.                 $visitaPeriodicaNotificacion->setColaboradorNotificacion(null);
  2377.             }
  2378.         }
  2379.         return $this;
  2380.     }
  2381.     /**
  2382.      * @return Collection<int, GHDesvinculacion>
  2383.      */
  2384.     public function getRecibeProcesoDesvinculacion(): Collection
  2385.     {
  2386.         return $this->recibeProcesoDesvinculacion;
  2387.     }
  2388.     public function addRecibeProcesoDesvinculacion(GHDesvinculacion $recibeProcesoDesvinculacion): static
  2389.     {
  2390.         if (!$this->recibeProcesoDesvinculacion->contains($recibeProcesoDesvinculacion)) {
  2391.             $this->recibeProcesoDesvinculacion->add($recibeProcesoDesvinculacion);
  2392.             $recibeProcesoDesvinculacion->setPersonaRecibe($this);
  2393.         }
  2394.         return $this;
  2395.     }
  2396.     public function removeRecibeProcesoDesvinculacion(GHDesvinculacion $recibeProcesoDesvinculacion): static
  2397.     {
  2398.         if ($this->recibeProcesoDesvinculacion->removeElement($recibeProcesoDesvinculacion)) {
  2399.             // set the owning side to null (unless already changed)
  2400.             if ($recibeProcesoDesvinculacion->getPersonaRecibe() === $this) {
  2401.                 $recibeProcesoDesvinculacion->setPersonaRecibe(null);
  2402.             }
  2403.         }
  2404.         return $this;
  2405.     }
  2406.     /**
  2407.      * @return Collection<int, GHEntrevistaRetiro>
  2408.      */
  2409.     public function getEntrevistaRetiroDiligencia(): Collection
  2410.     {
  2411.         return $this->entrevistaRetiroDiligencia;
  2412.     }
  2413.     public function addEntrevistaRetiroDiligencium(GHEntrevistaRetiro $entrevistaRetiroDiligencium): static
  2414.     {
  2415.         if (!$this->entrevistaRetiroDiligencia->contains($entrevistaRetiroDiligencium)) {
  2416.             $this->entrevistaRetiroDiligencia->add($entrevistaRetiroDiligencium);
  2417.             $entrevistaRetiroDiligencium->setPersonDiligencia($this);
  2418.         }
  2419.         return $this;
  2420.     }
  2421.     public function removeEntrevistaRetiroDiligencium(GHEntrevistaRetiro $entrevistaRetiroDiligencium): static
  2422.     {
  2423.         if ($this->entrevistaRetiroDiligencia->removeElement($entrevistaRetiroDiligencium)) {
  2424.             // set the owning side to null (unless already changed)
  2425.             if ($entrevistaRetiroDiligencium->getPersonDiligencia() === $this) {
  2426.                 $entrevistaRetiroDiligencium->setPersonDiligencia(null);
  2427.             }
  2428.         }
  2429.         return $this;
  2430.     }
  2431.     /**
  2432.      * @return Collection<int, SegControlAcceso>
  2433.      */
  2434.     public function getSolicitaControlAcceso(): Collection
  2435.     {
  2436.         return $this->solicitaControlAcceso;
  2437.     }
  2438.     public function addSolicitaControlAcceso(SegControlAcceso $solicitaControlAcceso): static
  2439.     {
  2440.         if (!$this->solicitaControlAcceso->contains($solicitaControlAcceso)) {
  2441.             $this->solicitaControlAcceso->add($solicitaControlAcceso);
  2442.             $solicitaControlAcceso->setSolicitante($this);
  2443.         }
  2444.         return $this;
  2445.     }
  2446.     public function removeSolicitaControlAcceso(SegControlAcceso $solicitaControlAcceso): static
  2447.     {
  2448.         if ($this->solicitaControlAcceso->removeElement($solicitaControlAcceso)) {
  2449.             // set the owning side to null (unless already changed)
  2450.             if ($solicitaControlAcceso->getSolicitante() === $this) {
  2451.                 $solicitaControlAcceso->setSolicitante(null);
  2452.             }
  2453.         }
  2454.         return $this;
  2455.     }
  2456.     /**
  2457.      * @return Collection<int, SegControlAcceso>
  2458.      */
  2459.     public function getControlAccesoIngreso(): Collection
  2460.     {
  2461.         return $this->controlAccesoIngreso;
  2462.     }
  2463.     public function addControlAccesoIngreso(SegControlAcceso $controlAccesoIngreso): static
  2464.     {
  2465.         if (!$this->controlAccesoIngreso->contains($controlAccesoIngreso)) {
  2466.             $this->controlAccesoIngreso->add($controlAccesoIngreso);
  2467.             $controlAccesoIngreso->addPersonalIngresa($this);
  2468.         }
  2469.         return $this;
  2470.     }
  2471.     public function removeControlAccesoIngreso(SegControlAcceso $controlAccesoIngreso): static
  2472.     {
  2473.         if ($this->controlAccesoIngreso->removeElement($controlAccesoIngreso)) {
  2474.             $controlAccesoIngreso->removePersonalIngresa($this);
  2475.         }
  2476.         return $this;
  2477.     }
  2478.     /**
  2479.      * @return Collection<int, SegIngresoVisitante>
  2480.      */
  2481.     public function getAtiendeIngresoVisitante(): Collection
  2482.     {
  2483.         return $this->atiendeIngresoVisitante;
  2484.     }
  2485.     public function addAtiendeIngresoVisitante(SegIngresoVisitante $atiendeIngresoVisitante): static
  2486.     {
  2487.         if (!$this->atiendeIngresoVisitante->contains($atiendeIngresoVisitante)) {
  2488.             $this->atiendeIngresoVisitante->add($atiendeIngresoVisitante);
  2489.             $atiendeIngresoVisitante->setUsuarioAtiende($this);
  2490.         }
  2491.         return $this;
  2492.     }
  2493.     public function removeAtiendeIngresoVisitante(SegIngresoVisitante $atiendeIngresoVisitante): static
  2494.     {
  2495.         if ($this->atiendeIngresoVisitante->removeElement($atiendeIngresoVisitante)) {
  2496.             // set the owning side to null (unless already changed)
  2497.             if ($atiendeIngresoVisitante->getUsuarioAtiende() === $this) {
  2498.                 $atiendeIngresoVisitante->setUsuarioAtiende(null);
  2499.             }
  2500.         }
  2501.         return $this;
  2502.     }
  2503.     /**
  2504.      * @return Collection<int, SegSolicitudCCTV>
  2505.      */
  2506.     public function getSolicitanteCCTV(): Collection
  2507.     {
  2508.         return $this->solicitanteCCTV;
  2509.     }
  2510.     public function addSolicitanteCCTV(SegSolicitudCCTV $solicitanteCCTV): static
  2511.     {
  2512.         if (!$this->solicitanteCCTV->contains($solicitanteCCTV)) {
  2513.             $this->solicitanteCCTV->add($solicitanteCCTV);
  2514.             $solicitanteCCTV->setSolicitante($this);
  2515.         }
  2516.         return $this;
  2517.     }
  2518.     public function removeSolicitanteCCTV(SegSolicitudCCTV $solicitanteCCTV): static
  2519.     {
  2520.         if ($this->solicitanteCCTV->removeElement($solicitanteCCTV)) {
  2521.             // set the owning side to null (unless already changed)
  2522.             if ($solicitanteCCTV->getSolicitante() === $this) {
  2523.                 $solicitanteCCTV->setSolicitante(null);
  2524.             }
  2525.         }
  2526.         return $this;
  2527.     }
  2528.     /**
  2529.      * @return Collection<int, SegSalidaMuestra>
  2530.      */
  2531.     public function getAutorizaSalidaMuestra(): Collection
  2532.     {
  2533.         return $this->autorizaSalidaMuestra;
  2534.     }
  2535.     public function addAutorizaSalidaMuestra(SegSalidaMuestra $autorizaSalidaMuestra): static
  2536.     {
  2537.         if (!$this->autorizaSalidaMuestra->contains($autorizaSalidaMuestra)) {
  2538.             $this->autorizaSalidaMuestra->add($autorizaSalidaMuestra);
  2539.             $autorizaSalidaMuestra->setAutorizaRetiro($this);
  2540.         }
  2541.         return $this;
  2542.     }
  2543.     public function removeAutorizaSalidaMuestra(SegSalidaMuestra $autorizaSalidaMuestra): static
  2544.     {
  2545.         if ($this->autorizaSalidaMuestra->removeElement($autorizaSalidaMuestra)) {
  2546.             // set the owning side to null (unless already changed)
  2547.             if ($autorizaSalidaMuestra->getAutorizaRetiro() === $this) {
  2548.                 $autorizaSalidaMuestra->setAutorizaRetiro(null);
  2549.             }
  2550.         }
  2551.         return $this;
  2552.     }
  2553.     /**
  2554.      * @return Collection<int, SegHomeOffice>
  2555.      */
  2556.     public function getHomeOffice(): Collection
  2557.     {
  2558.         return $this->homeOffice;
  2559.     }
  2560.     public function addHomeOffice(SegHomeOffice $homeOffice): static
  2561.     {
  2562.         if (!$this->homeOffice->contains($homeOffice)) {
  2563.             $this->homeOffice->add($homeOffice);
  2564.             $homeOffice->setUsuario($this);
  2565.         }
  2566.         return $this;
  2567.     }
  2568.     public function removeHomeOffice(SegHomeOffice $homeOffice): static
  2569.     {
  2570.         if ($this->homeOffice->removeElement($homeOffice)) {
  2571.             // set the owning side to null (unless already changed)
  2572.             if ($homeOffice->getUsuario() === $this) {
  2573.                 $homeOffice->setUsuario(null);
  2574.             }
  2575.         }
  2576.         return $this;
  2577.     }
  2578.     /**
  2579.      * @return Collection<int, SegIngresoVisitante>
  2580.      */
  2581.     public function getSolicitaIngresoVisitante(): Collection
  2582.     {
  2583.         return $this->solicitaIngresoVisitante;
  2584.     }
  2585.     public function addSolicitaIngresoVisitante(SegIngresoVisitante $solicitaIngresoVisitante): static
  2586.     {
  2587.         if (!$this->solicitaIngresoVisitante->contains($solicitaIngresoVisitante)) {
  2588.             $this->solicitaIngresoVisitante->add($solicitaIngresoVisitante);
  2589.             $solicitaIngresoVisitante->setUsuarioSolicita($this);
  2590.         }
  2591.         return $this;
  2592.     }
  2593.     public function removeSolicitaIngresoVisitante(SegIngresoVisitante $solicitaIngresoVisitante): static
  2594.     {
  2595.         if ($this->solicitaIngresoVisitante->removeElement($solicitaIngresoVisitante)) {
  2596.             // set the owning side to null (unless already changed)
  2597.             if ($solicitaIngresoVisitante->getUsuarioSolicita() === $this) {
  2598.                 $solicitaIngresoVisitante->setUsuarioSolicita(null);
  2599.             }
  2600.         }
  2601.         return $this;
  2602.     }
  2603.     /**
  2604.      * @return Collection<int, RFPrecinto>
  2605.      */
  2606.     public function getPrecintosCustodia(): Collection
  2607.     {
  2608.         return $this->precintosCustodia;
  2609.     }
  2610.     public function addPrecintosCustodium(RFPrecinto $precintosCustodium): static
  2611.     {
  2612.         if (!$this->precintosCustodia->contains($precintosCustodium)) {
  2613.             $this->precintosCustodia->add($precintosCustodium);
  2614.             $precintosCustodium->setResponsableCustodia($this);
  2615.         }
  2616.         return $this;
  2617.     }
  2618.     public function removePrecintosCustodium(RFPrecinto $precintosCustodium): static
  2619.     {
  2620.         if ($this->precintosCustodia->removeElement($precintosCustodium)) {
  2621.             // set the owning side to null (unless already changed)
  2622.             if ($precintosCustodium->getResponsableCustodia() === $this) {
  2623.                 $precintosCustodium->setResponsableCustodia(null);
  2624.             }
  2625.         }
  2626.         return $this;
  2627.     }
  2628.     /**
  2629.      * @return Collection<int, RFPrecintoSolicitud>
  2630.      */
  2631.     public function getSolicitantePrecintos(): Collection
  2632.     {
  2633.         return $this->solicitantePrecintos;
  2634.     }
  2635.     public function addSolicitantePrecinto(RFPrecintoSolicitud $solicitantePrecinto): static
  2636.     {
  2637.         if (!$this->solicitantePrecintos->contains($solicitantePrecinto)) {
  2638.             $this->solicitantePrecintos->add($solicitantePrecinto);
  2639.             $solicitantePrecinto->setSolicitante($this);
  2640.         }
  2641.         return $this;
  2642.     }
  2643.     public function removeSolicitantePrecinto(RFPrecintoSolicitud $solicitantePrecinto): static
  2644.     {
  2645.         if ($this->solicitantePrecintos->removeElement($solicitantePrecinto)) {
  2646.             // set the owning side to null (unless already changed)
  2647.             if ($solicitantePrecinto->getSolicitante() === $this) {
  2648.                 $solicitantePrecinto->setSolicitante(null);
  2649.             }
  2650.         }
  2651.         return $this;
  2652.     }
  2653.     /**
  2654.      * @return Collection<int, RFPrecintoAsignacion>
  2655.      */
  2656.     public function getPrecintoAsignacion(): Collection
  2657.     {
  2658.         return $this->precintoAsignacion;
  2659.     }
  2660.     public function addPrecintoAsignacion(RFPrecintoAsignacion $precintoAsignacion): static
  2661.     {
  2662.         if (!$this->precintoAsignacion->contains($precintoAsignacion)) {
  2663.             $this->precintoAsignacion->add($precintoAsignacion);
  2664.             $precintoAsignacion->setCoordinador($this);
  2665.         }
  2666.         return $this;
  2667.     }
  2668.     public function removePrecintoAsignacion(RFPrecintoAsignacion $precintoAsignacion): static
  2669.     {
  2670.         if ($this->precintoAsignacion->removeElement($precintoAsignacion)) {
  2671.             // set the owning side to null (unless already changed)
  2672.             if ($precintoAsignacion->getCoordinador() === $this) {
  2673.                 $precintoAsignacion->setCoordinador(null);
  2674.             }
  2675.         }
  2676.         return $this;
  2677.     }
  2678.     /**
  2679.      * @return Collection<int, RFPrecintoAsignacion>
  2680.      */
  2681.     public function getEntregaPrecintoAsignado(): Collection
  2682.     {
  2683.         return $this->entregaPrecintoAsignado;
  2684.     }
  2685.     public function addEntregaPrecintoAsignado(RFPrecintoAsignacion $entregaPrecintoAsignado): static
  2686.     {
  2687.         if (!$this->entregaPrecintoAsignado->contains($entregaPrecintoAsignado)) {
  2688.             $this->entregaPrecintoAsignado->add($entregaPrecintoAsignado);
  2689.             $entregaPrecintoAsignado->setUsuarioEntrega($this);
  2690.         }
  2691.         return $this;
  2692.     }
  2693.     public function removeEntregaPrecintoAsignado(RFPrecintoAsignacion $entregaPrecintoAsignado): static
  2694.     {
  2695.         if ($this->entregaPrecintoAsignado->removeElement($entregaPrecintoAsignado)) {
  2696.             // set the owning side to null (unless already changed)
  2697.             if ($entregaPrecintoAsignado->getUsuarioEntrega() === $this) {
  2698.                 $entregaPrecintoAsignado->setUsuarioEntrega(null);
  2699.             }
  2700.         }
  2701.         return $this;
  2702.     }
  2703.     /**
  2704.      * @return Collection<int, RFPrecintoAsignacion>
  2705.      */
  2706.     public function getRecibePrecintoAsignado(): Collection
  2707.     {
  2708.         return $this->recibePrecintoAsignado;
  2709.     }
  2710.     public function addRecibePrecintoAsignado(RFPrecintoAsignacion $recibePrecintoAsignado): static
  2711.     {
  2712.         if (!$this->recibePrecintoAsignado->contains($recibePrecintoAsignado)) {
  2713.             $this->recibePrecintoAsignado->add($recibePrecintoAsignado);
  2714.             $recibePrecintoAsignado->setUsuarioRecibe($this);
  2715.         }
  2716.         return $this;
  2717.     }
  2718.     public function removeRecibePrecintoAsignado(RFPrecintoAsignacion $recibePrecintoAsignado): static
  2719.     {
  2720.         if ($this->recibePrecintoAsignado->removeElement($recibePrecintoAsignado)) {
  2721.             // set the owning side to null (unless already changed)
  2722.             if ($recibePrecintoAsignado->getUsuarioRecibe() === $this) {
  2723.                 $recibePrecintoAsignado->setUsuarioRecibe(null);
  2724.             }
  2725.         }
  2726.         return $this;
  2727.     }
  2728.     /**
  2729.      * @return Collection<int, RFPrecintoRegistro>
  2730.      */
  2731.     public function getEntregaPrecintoRegistro(): Collection
  2732.     {
  2733.         return $this->entregaPrecintoRegistro;
  2734.     }
  2735.     public function addEntregaPrecintoRegistro(RFPrecintoRegistro $entregaPrecintoRegistro): static
  2736.     {
  2737.         if (!$this->entregaPrecintoRegistro->contains($entregaPrecintoRegistro)) {
  2738.             $this->entregaPrecintoRegistro->add($entregaPrecintoRegistro);
  2739.             $entregaPrecintoRegistro->setUsuarioEntrega($this);
  2740.         }
  2741.         return $this;
  2742.     }
  2743.     public function removeEntregaPrecintoRegistro(RFPrecintoRegistro $entregaPrecintoRegistro): static
  2744.     {
  2745.         if ($this->entregaPrecintoRegistro->removeElement($entregaPrecintoRegistro)) {
  2746.             // set the owning side to null (unless already changed)
  2747.             if ($entregaPrecintoRegistro->getUsuarioEntrega() === $this) {
  2748.                 $entregaPrecintoRegistro->setUsuarioEntrega(null);
  2749.             }
  2750.         }
  2751.         return $this;
  2752.     }
  2753.     /**
  2754.      * @return Collection<int, RFPrecintoRegistro>
  2755.      */
  2756.     public function getInstalaPrecintoRegistro(): Collection
  2757.     {
  2758.         return $this->instalaPrecintoRegistro;
  2759.     }
  2760.     public function addInstalaPrecintoRegistro(RFPrecintoRegistro $instalaPrecintoRegistro): static
  2761.     {
  2762.         if (!$this->instalaPrecintoRegistro->contains($instalaPrecintoRegistro)) {
  2763.             $this->instalaPrecintoRegistro->add($instalaPrecintoRegistro);
  2764.             $instalaPrecintoRegistro->setUsuarioInstala($this);
  2765.         }
  2766.         return $this;
  2767.     }
  2768.     public function removeInstalaPrecintoRegistro(RFPrecintoRegistro $instalaPrecintoRegistro): static
  2769.     {
  2770.         if ($this->instalaPrecintoRegistro->removeElement($instalaPrecintoRegistro)) {
  2771.             // set the owning side to null (unless already changed)
  2772.             if ($instalaPrecintoRegistro->getUsuarioInstala() === $this) {
  2773.                 $instalaPrecintoRegistro->setUsuarioInstala(null);
  2774.             }
  2775.         }
  2776.         return $this;
  2777.     }
  2778.     /**
  2779.      * @return Collection<int, RFSolicitudCompra>
  2780.      */
  2781.     public function getSolicitudesCompra(): Collection
  2782.     {
  2783.         return $this->solicitudesCompra;
  2784.     }
  2785.     public function addSolicitudesCompra(RFSolicitudCompra $solicitudesCompra): static
  2786.     {
  2787.         if (!$this->solicitudesCompra->contains($solicitudesCompra)) {
  2788.             $this->solicitudesCompra->add($solicitudesCompra);
  2789.             $solicitudesCompra->setSolicitante($this);
  2790.         }
  2791.         return $this;
  2792.     }
  2793.     public function removeSolicitudesCompra(RFSolicitudCompra $solicitudesCompra): static
  2794.     {
  2795.         if ($this->solicitudesCompra->removeElement($solicitudesCompra)) {
  2796.             // set the owning side to null (unless already changed)
  2797.             if ($solicitudesCompra->getSolicitante() === $this) {
  2798.                 $solicitudesCompra->setSolicitante(null);
  2799.             }
  2800.         }
  2801.         return $this;
  2802.     }
  2803.     /**
  2804.      * @return Collection<int, RFSolicitudCompra>
  2805.      */
  2806.     public function getAprobacionSolicitudCompra(): Collection
  2807.     {
  2808.         return $this->aprobacionSolicitudCompra;
  2809.     }
  2810.     public function addAprobacionSolicitudCompra(RFSolicitudCompra $aprobacionSolicitudCompra): static
  2811.     {
  2812.         if (!$this->aprobacionSolicitudCompra->contains($aprobacionSolicitudCompra)) {
  2813.             $this->aprobacionSolicitudCompra->add($aprobacionSolicitudCompra);
  2814.             $aprobacionSolicitudCompra->setUsuarioAprobacion($this);
  2815.         }
  2816.         return $this;
  2817.     }
  2818.     public function removeAprobacionSolicitudCompra(RFSolicitudCompra $aprobacionSolicitudCompra): static
  2819.     {
  2820.         if ($this->aprobacionSolicitudCompra->removeElement($aprobacionSolicitudCompra)) {
  2821.             // set the owning side to null (unless already changed)
  2822.             if ($aprobacionSolicitudCompra->getUsuarioAprobacion() === $this) {
  2823.                 $aprobacionSolicitudCompra->setUsuarioAprobacion(null);
  2824.             }
  2825.         }
  2826.         return $this;
  2827.     }
  2828.     /**
  2829.      * @return Collection<int, RFOrdenCompra>
  2830.      */
  2831.     public function getSolicitanteOrdenCompra(): Collection
  2832.     {
  2833.         return $this->solicitanteOrdenCompra;
  2834.     }
  2835.     public function addSolicitanteOrdenCompra(RFOrdenCompra $solicitanteOrdenCompra): static
  2836.     {
  2837.         if (!$this->solicitanteOrdenCompra->contains($solicitanteOrdenCompra)) {
  2838.             $this->solicitanteOrdenCompra->add($solicitanteOrdenCompra);
  2839.             $solicitanteOrdenCompra->setSolicitante($this);
  2840.         }
  2841.         return $this;
  2842.     }
  2843.     public function removeSolicitanteOrdenCompra(RFOrdenCompra $solicitanteOrdenCompra): static
  2844.     {
  2845.         if ($this->solicitanteOrdenCompra->removeElement($solicitanteOrdenCompra)) {
  2846.             // set the owning side to null (unless already changed)
  2847.             if ($solicitanteOrdenCompra->getSolicitante() === $this) {
  2848.                 $solicitanteOrdenCompra->setSolicitante(null);
  2849.             }
  2850.         }
  2851.         return $this;
  2852.     }
  2853.     /**
  2854.      * @return Collection<int, RFRembolsoCajaMenor>
  2855.      */
  2856.     public function getRFRembolsoCajaMenor(): Collection
  2857.     {
  2858.         return $this->RFRembolsoCajaMenor;
  2859.     }
  2860.     public function addRFRembolsoCajaMenor(RFRembolsoCajaMenor $rFRembolsoCajaMenor): static
  2861.     {
  2862.         if (!$this->RFRembolsoCajaMenor->contains($rFRembolsoCajaMenor)) {
  2863.             $this->RFRembolsoCajaMenor->add($rFRembolsoCajaMenor);
  2864.             $rFRembolsoCajaMenor->setUsuarioRecursoFisico($this);
  2865.         }
  2866.         return $this;
  2867.     }
  2868.     public function removeRFRembolsoCajaMenor(RFRembolsoCajaMenor $rFRembolsoCajaMenor): static
  2869.     {
  2870.         if ($this->RFRembolsoCajaMenor->removeElement($rFRembolsoCajaMenor)) {
  2871.             // set the owning side to null (unless already changed)
  2872.             if ($rFRembolsoCajaMenor->getUsuarioRecursoFisico() === $this) {
  2873.                 $rFRembolsoCajaMenor->setUsuarioRecursoFisico(null);
  2874.             }
  2875.         }
  2876.         return $this;
  2877.     }
  2878.     /**
  2879.      * @return Collection<int, RFRembolsoCajaMenor>
  2880.      */
  2881.     public function getFinanzaRembolsoCajaMenor(): Collection
  2882.     {
  2883.         return $this->finanzaRembolsoCajaMenor;
  2884.     }
  2885.     public function addFinanzaRembolsoCajaMenor(RFRembolsoCajaMenor $finanzaRembolsoCajaMenor): static
  2886.     {
  2887.         if (!$this->finanzaRembolsoCajaMenor->contains($finanzaRembolsoCajaMenor)) {
  2888.             $this->finanzaRembolsoCajaMenor->add($finanzaRembolsoCajaMenor);
  2889.             $finanzaRembolsoCajaMenor->setUsuarioFinanzas($this);
  2890.         }
  2891.         return $this;
  2892.     }
  2893.     public function removeFinanzaRembolsoCajaMenor(RFRembolsoCajaMenor $finanzaRembolsoCajaMenor): static
  2894.     {
  2895.         if ($this->finanzaRembolsoCajaMenor->removeElement($finanzaRembolsoCajaMenor)) {
  2896.             // set the owning side to null (unless already changed)
  2897.             if ($finanzaRembolsoCajaMenor->getUsuarioFinanzas() === $this) {
  2898.                 $finanzaRembolsoCajaMenor->setUsuarioFinanzas(null);
  2899.             }
  2900.         }
  2901.         return $this;
  2902.     }
  2903.     /**
  2904.      * @return Collection<int, RFRembolsoCajaMenorItem>
  2905.      */
  2906.     public function getBeneficiarioRembolsoCajaMenorItem(): Collection
  2907.     {
  2908.         return $this->beneficiarioRembolsoCajaMenorItem;
  2909.     }
  2910.     public function addBeneficiarioRembolsoCajaMenorItem(RFRembolsoCajaMenorItem $beneficiarioRembolsoCajaMenorItem): static
  2911.     {
  2912.         if (!$this->beneficiarioRembolsoCajaMenorItem->contains($beneficiarioRembolsoCajaMenorItem)) {
  2913.             $this->beneficiarioRembolsoCajaMenorItem->add($beneficiarioRembolsoCajaMenorItem);
  2914.             $beneficiarioRembolsoCajaMenorItem->setBeneficiario($this);
  2915.         }
  2916.         return $this;
  2917.     }
  2918.     public function removeBeneficiarioRembolsoCajaMenorItem(RFRembolsoCajaMenorItem $beneficiarioRembolsoCajaMenorItem): static
  2919.     {
  2920.         if ($this->beneficiarioRembolsoCajaMenorItem->removeElement($beneficiarioRembolsoCajaMenorItem)) {
  2921.             // set the owning side to null (unless already changed)
  2922.             if ($beneficiarioRembolsoCajaMenorItem->getBeneficiario() === $this) {
  2923.                 $beneficiarioRembolsoCajaMenorItem->setBeneficiario(null);
  2924.             }
  2925.         }
  2926.         return $this;
  2927.     }
  2928.     /**
  2929.      * @return Collection<int, RFRembolsoCajaMenorItem>
  2930.      */
  2931.     public function getAprobadoRembolsoCajaMenorItem(): Collection
  2932.     {
  2933.         return $this->aprobadoRembolsoCajaMenorItem;
  2934.     }
  2935.     public function addAprobadoRembolsoCajaMenorItem(RFRembolsoCajaMenorItem $aprobadoRembolsoCajaMenorItem): static
  2936.     {
  2937.         if (!$this->aprobadoRembolsoCajaMenorItem->contains($aprobadoRembolsoCajaMenorItem)) {
  2938.             $this->aprobadoRembolsoCajaMenorItem->add($aprobadoRembolsoCajaMenorItem);
  2939.             $aprobadoRembolsoCajaMenorItem->setAprobado($this);
  2940.         }
  2941.         return $this;
  2942.     }
  2943.     public function removeAprobadoRembolsoCajaMenorItem(RFRembolsoCajaMenorItem $aprobadoRembolsoCajaMenorItem): static
  2944.     {
  2945.         if ($this->aprobadoRembolsoCajaMenorItem->removeElement($aprobadoRembolsoCajaMenorItem)) {
  2946.             // set the owning side to null (unless already changed)
  2947.             if ($aprobadoRembolsoCajaMenorItem->getAprobado() === $this) {
  2948.                 $aprobadoRembolsoCajaMenorItem->setAprobado(null);
  2949.             }
  2950.         }
  2951.         return $this;
  2952.     }
  2953.     /**
  2954.      * @return Collection<int, RFDisposicionProveedor>
  2955.      */
  2956.     public function getDisposicionProveedorDirector(): Collection
  2957.     {
  2958.         return $this->disposicionProveedorDirector;
  2959.     }
  2960.     public function addDisposicionProveedorDirector(RFDisposicionProveedor $disposicionProveedorDirector): static
  2961.     {
  2962.         if (!$this->disposicionProveedorDirector->contains($disposicionProveedorDirector)) {
  2963.             $this->disposicionProveedorDirector->add($disposicionProveedorDirector);
  2964.             $disposicionProveedorDirector->addDirector($this);
  2965.         }
  2966.         return $this;
  2967.     }
  2968.     public function removeDisposicionProveedorDirector(RFDisposicionProveedor $disposicionProveedorDirector): static
  2969.     {
  2970.         if ($this->disposicionProveedorDirector->removeElement($disposicionProveedorDirector)) {
  2971.             $disposicionProveedorDirector->removeDirector($this);
  2972.         }
  2973.         return $this;
  2974.     }
  2975.     /**
  2976.      * @return Collection<int, SecMensaje>
  2977.      */
  2978.     public function getMensajes(): Collection
  2979.     {
  2980.         return $this->mensajes;
  2981.     }
  2982.     public function addMensaje(SecMensaje $mensaje): static
  2983.     {
  2984.         if (!$this->mensajes->contains($mensaje)) {
  2985.             $this->mensajes->add($mensaje);
  2986.             $mensaje->setColaborador($this);
  2987.         }
  2988.         return $this;
  2989.     }
  2990.     public function removeMensaje(SecMensaje $mensaje): static
  2991.     {
  2992.         if ($this->mensajes->removeElement($mensaje)) {
  2993.             // set the owning side to null (unless already changed)
  2994.             if ($mensaje->getColaborador() === $this) {
  2995.                 $mensaje->setColaborador(null);
  2996.             }
  2997.         }
  2998.         return $this;
  2999.     }
  3000.     /**
  3001.      * @return Collection<int, SecMensaje>
  3002.      */
  3003.     public function getRemitenteMensaje(): Collection
  3004.     {
  3005.         return $this->remitenteMensaje;
  3006.     }
  3007.     public function addRemitenteMensaje(SecMensaje $remitenteMensaje): static
  3008.     {
  3009.         if (!$this->remitenteMensaje->contains($remitenteMensaje)) {
  3010.             $this->remitenteMensaje->add($remitenteMensaje);
  3011.             $remitenteMensaje->setRemitente($this);
  3012.         }
  3013.         return $this;
  3014.     }
  3015.     public function removeRemitenteMensaje(SecMensaje $remitenteMensaje): static
  3016.     {
  3017.         if ($this->remitenteMensaje->removeElement($remitenteMensaje)) {
  3018.             // set the owning side to null (unless already changed)
  3019.             if ($remitenteMensaje->getRemitente() === $this) {
  3020.                 $remitenteMensaje->setRemitente(null);
  3021.             }
  3022.         }
  3023.         return $this;
  3024.     }
  3025.     /**
  3026.      * @return Collection<int, ParHorario>
  3027.      */
  3028.     public function getHorarios(): Collection
  3029.     {
  3030.         return $this->horarios;
  3031.     }
  3032.     public function addHorario(ParHorario $horario): static
  3033.     {
  3034.         if (!$this->horarios->contains($horario)) {
  3035.             $this->horarios->add($horario);
  3036.             $horario->addUsuario($this);
  3037.         }
  3038.         return $this;
  3039.     }
  3040.     public function removeHorario(ParHorario $horario): static
  3041.     {
  3042.         if ($this->horarios->removeElement($horario)) {
  3043.             $horario->removeUsuario($this);
  3044.         }
  3045.         return $this;
  3046.     }
  3047.     /**
  3048.      * @return Collection<int, GHNovedadNomina>
  3049.      */
  3050.     public function getNovedadNominaAutorizadas(): Collection
  3051.     {
  3052.         return $this->novedadNominaAutorizadas;
  3053.     }
  3054.     public function addNovedadNominaAutorizada(GHNovedadNomina $novedadNominaAutorizada): static
  3055.     {
  3056.         if (!$this->novedadNominaAutorizadas->contains($novedadNominaAutorizada)) {
  3057.             $this->novedadNominaAutorizadas->add($novedadNominaAutorizada);
  3058.             $novedadNominaAutorizada->setAutorizadoPor($this);
  3059.         }
  3060.         return $this;
  3061.     }
  3062.     public function removeNovedadNominaAutorizada(GHNovedadNomina $novedadNominaAutorizada): static
  3063.     {
  3064.         if ($this->novedadNominaAutorizadas->removeElement($novedadNominaAutorizada)) {
  3065.             // set the owning side to null (unless already changed)
  3066.             if ($novedadNominaAutorizada->getAutorizadoPor() === $this) {
  3067.                 $novedadNominaAutorizada->setAutorizadoPor(null);
  3068.             }
  3069.         }
  3070.         return $this;
  3071.     }
  3072.     /**
  3073.      * @return Collection<int, ParCuestionarioAsignacion>
  3074.      */
  3075.     public function getCuestionarioAsignaciones(): Collection
  3076.     {
  3077.         return $this->cuestionarioAsignaciones;
  3078.     }
  3079.     public function addCuestionarioAsignacione(ParCuestionarioAsignacion $cuestionarioAsignacione): static
  3080.     {
  3081.         if (!$this->cuestionarioAsignaciones->contains($cuestionarioAsignacione)) {
  3082.             $this->cuestionarioAsignaciones->add($cuestionarioAsignacione);
  3083.             $cuestionarioAsignacione->setPersona($this);
  3084.         }
  3085.         return $this;
  3086.     }
  3087.     public function removeCuestionarioAsignacione(ParCuestionarioAsignacion $cuestionarioAsignacione): static
  3088.     {
  3089.         if ($this->cuestionarioAsignaciones->removeElement($cuestionarioAsignacione)) {
  3090.             // set the owning side to null (unless already changed)
  3091.             if ($cuestionarioAsignacione->getPersona() === $this) {
  3092.                 $cuestionarioAsignacione->setPersona(null);
  3093.             }
  3094.         }
  3095.         return $this;
  3096.     }
  3097.     /**
  3098.      * @return Collection<int, GHReentrenamiento>
  3099.      */
  3100.     public function getReentrenamientos(): Collection
  3101.     {
  3102.         return $this->reentrenamientos;
  3103.     }
  3104.     public function addReentrenamiento(GHReentrenamiento $reentrenamiento): static
  3105.     {
  3106.         if (!$this->reentrenamientos->contains($reentrenamiento)) {
  3107.             $this->reentrenamientos->add($reentrenamiento);
  3108.             $reentrenamiento->setPersona($this);
  3109.         }
  3110.         return $this;
  3111.     }
  3112.     public function removeReentrenamiento(GHReentrenamiento $reentrenamiento): static
  3113.     {
  3114.         if ($this->reentrenamientos->removeElement($reentrenamiento)) {
  3115.             // set the owning side to null (unless already changed)
  3116.             if ($reentrenamiento->getPersona() === $this) {
  3117.                 $reentrenamiento->setPersona(null);
  3118.             }
  3119.         }
  3120.         return $this;
  3121.     }
  3122.     /**
  3123.      * @return Collection<int, GHCapacitacionActividad>
  3124.      */
  3125.     public function getResponableCapacitacionActividades(): Collection
  3126.     {
  3127.         return $this->responsableCapacitacionActividades;
  3128.     }
  3129.     public function addResponableCapacitacionActividade(GHCapacitacionActividad $responableCapacitacionActividade): static
  3130.     {
  3131.         if (!$this->responsableCapacitacionActividades->contains($responableCapacitacionActividade)) {
  3132.             $this->responsableCapacitacionActividades->add($responableCapacitacionActividade);
  3133.             $responableCapacitacionActividade->setResponsable($this);
  3134.         }
  3135.         return $this;
  3136.     }
  3137.     public function removeResponableCapacitacionActividade(GHCapacitacionActividad $responableCapacitacionActividade): static
  3138.     {
  3139.         if ($this->responsableCapacitacionActividades->removeElement($responableCapacitacionActividade)) {
  3140.             // set the owning side to null (unless already changed)
  3141.             if ($responableCapacitacionActividade->getResponsable() === $this) {
  3142.                 $responableCapacitacionActividade->setResponsable(null);
  3143.             }
  3144.         }
  3145.         return $this;
  3146.     }
  3147.     /**
  3148.      * @return Collection<int, GHRegistroOpain>
  3149.      */
  3150.     public function getRegistrosOpain(): Collection
  3151.     {
  3152.         return $this->registrosOpain;
  3153.     }
  3154.     public function addRegistrosOpain(GHRegistroOpain $registrosOpain): static
  3155.     {
  3156.         if (!$this->registrosOpain->contains($registrosOpain)) {
  3157.             $this->registrosOpain->add($registrosOpain);
  3158.             $registrosOpain->setPersona($this);
  3159.         }
  3160.         return $this;
  3161.     }
  3162.     public function removeRegistrosOpain(GHRegistroOpain $registrosOpain): static
  3163.     {
  3164.         if ($this->registrosOpain->removeElement($registrosOpain)) {
  3165.             // set the owning side to null (unless already changed)
  3166.             if ($registrosOpain->getPersona() === $this) {
  3167.                 $registrosOpain->setPersona(null);
  3168.             }
  3169.         }
  3170.         return $this;
  3171.     }
  3172.     /**
  3173.      * @return Collection<int, GHVerificacionAntecedentePersona>
  3174.      */
  3175.     public function getVerificacionAntecedentesPersona(): Collection
  3176.     {
  3177.         return $this->verificacionAntecedentesPersona;
  3178.     }
  3179.     public function addVerificacionAntecedentesPersona(GHVerificacionAntecedentePersona $verificacionAntecedentesPersona): static
  3180.     {
  3181.         if (!$this->verificacionAntecedentesPersona->contains($verificacionAntecedentesPersona)) {
  3182.             $this->verificacionAntecedentesPersona->add($verificacionAntecedentesPersona);
  3183.             $verificacionAntecedentesPersona->setPersona($this);
  3184.         }
  3185.         return $this;
  3186.     }
  3187.     public function removeVerificacionAntecedentesPersona(GHVerificacionAntecedentePersona $verificacionAntecedentesPersona): static
  3188.     {
  3189.         if ($this->verificacionAntecedentesPersona->removeElement($verificacionAntecedentesPersona)) {
  3190.             // set the owning side to null (unless already changed)
  3191.             if ($verificacionAntecedentesPersona->getPersona() === $this) {
  3192.                 $verificacionAntecedentesPersona->setPersona(null);
  3193.             }
  3194.         }
  3195.         return $this;
  3196.     }
  3197.     /**
  3198.      * @return Collection<int, GHEvaluacionDesempenoPersona>
  3199.      */
  3200.     public function getEvaluacionesDesempenoPersona(): Collection
  3201.     {
  3202.         return $this->evaluacionesDesempenoPersona;
  3203.     }
  3204.     public function addEvaluacionesDesempenoPersona(GHEvaluacionDesempenoPersona $evaluacionesDesempenoPersona): static
  3205.     {
  3206.         if (!$this->evaluacionesDesempenoPersona->contains($evaluacionesDesempenoPersona)) {
  3207.             $this->evaluacionesDesempenoPersona->add($evaluacionesDesempenoPersona);
  3208.             $evaluacionesDesempenoPersona->setEvaluacionDesempeno($this);
  3209.         }
  3210.         return $this;
  3211.     }
  3212.     public function removeEvaluacionesDesempenoPersona(GHEvaluacionDesempenoPersona $evaluacionesDesempenoPersona): static
  3213.     {
  3214.         if ($this->evaluacionesDesempenoPersona->removeElement($evaluacionesDesempenoPersona)) {
  3215.             // set the owning side to null (unless already changed)
  3216.             if ($evaluacionesDesempenoPersona->getEvaluacionDesempeno() === $this) {
  3217.                 $evaluacionesDesempenoPersona->setEvaluacionDesempeno(null);
  3218.             }
  3219.         }
  3220.         return $this;
  3221.     }
  3222.     /**
  3223.      * @return Collection<int, GHContratacion>
  3224.      */
  3225.     public function getCondicionesContratacionJefeInm(): Collection
  3226.     {
  3227.         return $this->condicionesContratacionJefeInm;
  3228.     }
  3229.     public function addCondicionesContratacionJefeInm(GHContratacion $condicionesContratacionJefeInm): static
  3230.     {
  3231.         if (!$this->condicionesContratacionJefeInm->contains($condicionesContratacionJefeInm)) {
  3232.             $this->condicionesContratacionJefeInm->add($condicionesContratacionJefeInm);
  3233.             $condicionesContratacionJefeInm->setJefeInmediatoC($this);
  3234.         }
  3235.         return $this;
  3236.     }
  3237.     public function removeCondicionesContratacionJefeInm(GHContratacion $condicionesContratacionJefeInm): static
  3238.     {
  3239.         if ($this->condicionesContratacionJefeInm->removeElement($condicionesContratacionJefeInm)) {
  3240.             // set the owning side to null (unless already changed)
  3241.             if ($condicionesContratacionJefeInm->getJefeInmediatoC() === $this) {
  3242.                 $condicionesContratacionJefeInm->setJefeInmediatoC(null);
  3243.             }
  3244.         }
  3245.         return $this;
  3246.     }
  3247.     /**
  3248.      * @return Collection<int, GHContratacion>
  3249.      */
  3250.     public function getCondicionesContratacionAprobador(): Collection
  3251.     {
  3252.         return $this->condicionesContratacionAprobador;
  3253.     }
  3254.     public function addCondicionesContratacionAprobador(GHContratacion $condicionesContratacionAprobador): static
  3255.     {
  3256.         if (!$this->condicionesContratacionAprobador->contains($condicionesContratacionAprobador)) {
  3257.             $this->condicionesContratacionAprobador->add($condicionesContratacionAprobador);
  3258.             $condicionesContratacionAprobador->setAprobador($this);
  3259.         }
  3260.         return $this;
  3261.     }
  3262.     public function removeCondicionesContratacionAprobador(GHContratacion $condicionesContratacionAprobador): static
  3263.     {
  3264.         if ($this->condicionesContratacionAprobador->removeElement($condicionesContratacionAprobador)) {
  3265.             // set the owning side to null (unless already changed)
  3266.             if ($condicionesContratacionAprobador->getAprobador() === $this) {
  3267.                 $condicionesContratacionAprobador->setAprobador(null);
  3268.             }
  3269.         }
  3270.         return $this;
  3271.     }
  3272.     public function isNotificadoCienDias(): bool
  3273.     {
  3274.         return $this->notificadoCienDias;
  3275.     }
  3276.     public function setNotificadoCienDias(bool $notificadoCienDias): static
  3277.     {
  3278.         $this->notificadoCienDias $notificadoCienDias;
  3279.         return $this;
  3280.     }
  3281.     /**
  3282.      * @return Collection<int, TerPersonaHistorial>
  3283.      */
  3284.     public function getHistorialesPerso(): Collection
  3285.     {
  3286.         return $this->historialesPerso;
  3287.     }
  3288.     public function addHistorialesPerso(TerPersonaHistorial $historialesPerso): static
  3289.     {
  3290.         if (!$this->historialesPerso->contains($historialesPerso)) {
  3291.             $this->historialesPerso->add($historialesPerso);
  3292.             $historialesPerso->setPersona($this);
  3293.         }
  3294.         return $this;
  3295.     }
  3296.     public function removeHistorialesPerso(TerPersonaHistorial $historialesPerso): static
  3297.     {
  3298.         if ($this->historialesPerso->removeElement($historialesPerso)) {
  3299.             // set the owning side to null (unless already changed)
  3300.             if ($historialesPerso->getPersona() === $this) {
  3301.                 $historialesPerso->setPersona(null);
  3302.             }
  3303.         }
  3304.         return $this;
  3305.     }
  3306.     /**
  3307.      * @return Collection<int, GHNovedadNomina>
  3308.      */
  3309.     public function getNovedadNominaPSL(): Collection
  3310.     {
  3311.         return $this->novedadNominaPSL;
  3312.     }
  3313.     public function addNovedadNominaPSL(GHNovedadNomina $novedadNominaPSL): static
  3314.     {
  3315.         if (!$this->novedadNominaPSL->contains($novedadNominaPSL)) {
  3316.             $this->novedadNominaPSL->add($novedadNominaPSL);
  3317.             $novedadNominaPSL->setAutorizadoPorLicencia($this);
  3318.         }
  3319.         return $this;
  3320.     }
  3321.     public function removeNovedadNominaPSL(GHNovedadNomina $novedadNominaPSL): static
  3322.     {
  3323.         if ($this->novedadNominaPSL->removeElement($novedadNominaPSL)) {
  3324.             // set the owning side to null (unless already changed)
  3325.             if ($novedadNominaPSL->getAutorizadoPorLicencia() === $this) {
  3326.                 $novedadNominaPSL->setAutorizadoPorLicencia(null);
  3327.             }
  3328.         }
  3329.         return $this;
  3330.     }
  3331.     /**
  3332.      * @return Collection<int, GHNovedadNomina>
  3333.      */
  3334.     public function getNovedadNominaBeneficioV(): Collection
  3335.     {
  3336.         return $this->novedadNominaBeneficioV;
  3337.     }
  3338.     public function addNovedadNominaBeneficioV(GHNovedadNomina $novedadNominaBeneficioV): static
  3339.     {
  3340.         if (!$this->novedadNominaBeneficioV->contains($novedadNominaBeneficioV)) {
  3341.             $this->novedadNominaBeneficioV->add($novedadNominaBeneficioV);
  3342.             $novedadNominaBeneficioV->setBeneficioVacaciones($this);
  3343.         }
  3344.         return $this;
  3345.     }
  3346.     public function removeNovedadNominaBeneficioV(GHNovedadNomina $novedadNominaBeneficioV): static
  3347.     {
  3348.         if ($this->novedadNominaBeneficioV->removeElement($novedadNominaBeneficioV)) {
  3349.             // set the owning side to null (unless already changed)
  3350.             if ($novedadNominaBeneficioV->getBeneficioVacaciones() === $this) {
  3351.                 $novedadNominaBeneficioV->setBeneficioVacaciones(null);
  3352.             }
  3353.         }
  3354.         return $this;
  3355.     }
  3356.     /**
  3357.      * @return Collection<int, GHEntrevistaJefe>
  3358.      */
  3359.     public function getEntrevistaJefe(): Collection
  3360.     {
  3361.         return $this->entrevistaJefe;
  3362.     }
  3363.     public function addEntrevistaJefe(GHEntrevistaJefe $entrevistaJefe): static
  3364.     {
  3365.         if (!$this->entrevistaJefe->contains($entrevistaJefe)) {
  3366.             $this->entrevistaJefe->add($entrevistaJefe);
  3367.             $entrevistaJefe->setResponsableEntrevista($this);
  3368.         }
  3369.         return $this;
  3370.     }
  3371.     public function removeEntrevistaJefe(GHEntrevistaJefe $entrevistaJefe): static
  3372.     {
  3373.         if ($this->entrevistaJefe->removeElement($entrevistaJefe)) {
  3374.             // set the owning side to null (unless already changed)
  3375.             if ($entrevistaJefe->getResponsableEntrevista() === $this) {
  3376.                 $entrevistaJefe->setResponsableEntrevista(null);
  3377.             }
  3378.         }
  3379.         return $this;
  3380.     }
  3381.     /**
  3382.      * @return Collection<int, GHPerfilCargo>
  3383.      */
  3384.     public function getPerfilApruebaCargo(): Collection
  3385.     {
  3386.         return $this->perfilApruebaCargo;
  3387.     }
  3388.     public function addPerfilApruebaCargo(GHPerfilCargo $perfilApruebaCargo): static
  3389.     {
  3390.         if (!$this->perfilApruebaCargo->contains($perfilApruebaCargo)) {
  3391.             $this->perfilApruebaCargo->add($perfilApruebaCargo);
  3392.             $perfilApruebaCargo->setCargoAprueba($this);
  3393.         }
  3394.         return $this;
  3395.     }
  3396.     public function removePerfilApruebaCargo(GHPerfilCargo $perfilApruebaCargo): static
  3397.     {
  3398.         if ($this->perfilApruebaCargo->removeElement($perfilApruebaCargo)) {
  3399.             // set the owning side to null (unless already changed)
  3400.             if ($perfilApruebaCargo->getCargoAprueba() === $this) {
  3401.                 $perfilApruebaCargo->setCargoAprueba(null);
  3402.             }
  3403.         }
  3404.         return $this;
  3405.     }
  3406.     /**
  3407.      * @return Collection<int, GHGestionTurno>
  3408.      */
  3409.     public function getGestionTurno(): Collection
  3410.     {
  3411.         return $this->gestionTurno;
  3412.     }
  3413.     public function addGestionTurno(GHGestionTurno $gestionTurno): static
  3414.     {
  3415.         if (!$this->gestionTurno->contains($gestionTurno)) {
  3416.             $this->gestionTurno->add($gestionTurno);
  3417.             $gestionTurno->setColaborador($this);
  3418.         }
  3419.         return $this;
  3420.     }
  3421.     public function removeGestionTurno(GHGestionTurno $gestionTurno): static
  3422.     {
  3423.         if ($this->gestionTurno->removeElement($gestionTurno)) {
  3424.             // set the owning side to null (unless already changed)
  3425.             if ($gestionTurno->getColaborador() === $this) {
  3426.                 $gestionTurno->setColaborador(null);
  3427.             }
  3428.         }
  3429.         return $this;
  3430.     }
  3431.     /**
  3432.      * @return Collection<int, GHNovedadNomina>
  3433.      */
  3434.     public function getNovedadNominaAux(): Collection
  3435.     {
  3436.         return $this->novedadNominaAux;
  3437.     }
  3438.     public function addNovedadNominaAux(GHNovedadNomina $novedadNominaAux): static
  3439.     {
  3440.         if (!$this->novedadNominaAux->contains($novedadNominaAux)) {
  3441.             $this->novedadNominaAux->add($novedadNominaAux);
  3442.             $novedadNominaAux->setAutorizadoPorAux($this);
  3443.         }
  3444.         return $this;
  3445.     }
  3446.     public function removeNovedadNominaAux(GHNovedadNomina $novedadNominaAux): static
  3447.     {
  3448.         if ($this->novedadNominaAux->removeElement($novedadNominaAux)) {
  3449.             // set the owning side to null (unless already changed)
  3450.             if ($novedadNominaAux->getAutorizadoPorAux() === $this) {
  3451.                 $novedadNominaAux->setAutorizadoPorAux(null);
  3452.             }
  3453.         }
  3454.         return $this;
  3455.     }
  3456.     /**
  3457.      * @return Collection<int, GHNovedadNomina>
  3458.      */
  3459.     public function getNovedadNominaBon(): Collection
  3460.     {
  3461.         return $this->novedadNominaBon;
  3462.     }
  3463.     public function addNovedadNominaBon(GHNovedadNomina $novedadNominaBon): static
  3464.     {
  3465.         if (!$this->novedadNominaBon->contains($novedadNominaBon)) {
  3466.             $this->novedadNominaBon->add($novedadNominaBon);
  3467.             $novedadNominaBon->setAutorizadoPorBon($this);
  3468.         }
  3469.         return $this;
  3470.     }
  3471.     public function removeNovedadNominaBon(GHNovedadNomina $novedadNominaBon): static
  3472.     {
  3473.         if ($this->novedadNominaBon->removeElement($novedadNominaBon)) {
  3474.             // set the owning side to null (unless already changed)
  3475.             if ($novedadNominaBon->getAutorizadoPorBon() === $this) {
  3476.                 $novedadNominaBon->setAutorizadoPorBon(null);
  3477.             }
  3478.         }
  3479.         return $this;
  3480.     }
  3481.     public function isNoti1anio(): ?bool
  3482.     {
  3483.         return $this->noti1anio;
  3484.     }
  3485.     public function setNoti1anio(?bool $noti1anio): static
  3486.     {
  3487.         $this->noti1anio $noti1anio;
  3488.         return $this;
  3489.     }
  3490.     /**
  3491.      * @return Collection<int, ComVisitaComercialCompromisos>
  3492.      */
  3493.     public function getComVisitaComercialCompromisos(): Collection
  3494.     {
  3495.         return $this->comVisitaComercialCompromisos;
  3496.     }
  3497.     public function addComVisitaComercialCompromiso(ComVisitaComercialCompromisos $comVisitaComercialCompromiso): static
  3498.     {
  3499.         if (!$this->comVisitaComercialCompromisos->contains($comVisitaComercialCompromiso)) {
  3500.             $this->comVisitaComercialCompromisos->add($comVisitaComercialCompromiso);
  3501.             $comVisitaComercialCompromiso->setResponsableInterno($this);
  3502.         }
  3503.         return $this;
  3504.     }
  3505.     public function removeComVisitaComercialCompromiso(ComVisitaComercialCompromisos $comVisitaComercialCompromiso): static
  3506.     {
  3507.         if ($this->comVisitaComercialCompromisos->removeElement($comVisitaComercialCompromiso)) {
  3508.             // set the owning side to null (unless already changed)
  3509.             if ($comVisitaComercialCompromiso->getResponsableInterno() === $this) {
  3510.                 $comVisitaComercialCompromiso->setResponsableInterno(null);
  3511.             }
  3512.         }
  3513.         return $this;
  3514.     }
  3515.     /**
  3516.      * @return Collection<int, ComOfertaComercial>
  3517.      */
  3518.     public function getComOfertaComercial(): Collection
  3519.     {
  3520.         return $this->comOfertaComercial;
  3521.     }
  3522.     public function addComOfertaComercial(ComOfertaComercial $comOfertaComercial): static
  3523.     {
  3524.         if (!$this->comOfertaComercial->contains($comOfertaComercial)) {
  3525.             $this->comOfertaComercial->add($comOfertaComercial);
  3526.             $comOfertaComercial->setTerPersona($this);
  3527.         }
  3528.         return $this;
  3529.     }
  3530.     public function removeComOfertaComercial(ComOfertaComercial $comOfertaComercial): static
  3531.     {
  3532.         if ($this->comOfertaComercial->removeElement($comOfertaComercial)) {
  3533.             // set the owning side to null (unless already changed)
  3534.             if ($comOfertaComercial->getTerPersona() === $this) {
  3535.                 $comOfertaComercial->setTerPersona(null);
  3536.             }
  3537.         }
  3538.         return $this;
  3539.     }
  3540.     public function isPersonaCliente(): ?bool
  3541.     {
  3542.         return $this->personaCliente;
  3543.     }
  3544.     public function setPersonaCliente(?bool $personaCliente): static
  3545.     {
  3546.         $this->personaCliente $personaCliente;
  3547.         return $this;
  3548.     }
  3549.     /**
  3550.      * @return Collection<int, ComHojaVida>
  3551.      */
  3552.     public function getComHojaVidas(): Collection
  3553.     {
  3554.         return $this->comHojaVidas;
  3555.     }
  3556.     public function addComHojaVida(ComHojaVida $comHojaVida): static
  3557.     {
  3558.         if (!$this->comHojaVidas->contains($comHojaVida)) {
  3559.             $this->comHojaVidas->add($comHojaVida);
  3560.             $comHojaVida->addUsuariosNotificar($this);
  3561.         }
  3562.         return $this;
  3563.     }
  3564.     public function removeComHojaVida(ComHojaVida $comHojaVida): static
  3565.     {
  3566.         if ($this->comHojaVidas->removeElement($comHojaVida)) {
  3567.             $comHojaVida->removeUsuariosNotificar($this);
  3568.         }
  3569.         return $this;
  3570.     }
  3571.     /**
  3572.      * @return Collection<int, ComAsignarComex>
  3573.      */
  3574.     public function getComAsignarComex(): Collection
  3575.     {
  3576.         return $this->comAsignarComex;
  3577.     }
  3578.     public function addComAsignarComex(ComAsignarComex $comAsignarComex): static
  3579.     {
  3580.         if (!$this->comAsignarComex->contains($comAsignarComex)) {
  3581.             $this->comAsignarComex->add($comAsignarComex);
  3582.             $comAsignarComex->setJefeAduana($this);
  3583.         }
  3584.         return $this;
  3585.     }
  3586.     public function removeComAsignarComex(ComAsignarComex $comAsignarComex): static
  3587.     {
  3588.         if ($this->comAsignarComex->removeElement($comAsignarComex)) {
  3589.             // set the owning side to null (unless already changed)
  3590.             if ($comAsignarComex->getJefeAduana() === $this) {
  3591.                 $comAsignarComex->setJefeAduana(null);
  3592.             }
  3593.         }
  3594.         return $this;
  3595.     }
  3596.     /**
  3597.      * @return Collection<int, ComAsignarComex>
  3598.      */
  3599.     public function getComAsignarComexEjecutivo(): Collection
  3600.     {
  3601.         return $this->comAsignarComexEjecutivo;
  3602.     }
  3603.     public function addComAsignarComexEjecutivo(ComAsignarComex $comAsignarComexEjecutivo): static
  3604.     {
  3605.         if (!$this->comAsignarComexEjecutivo->contains($comAsignarComexEjecutivo)) {
  3606.             $this->comAsignarComexEjecutivo->add($comAsignarComexEjecutivo);
  3607.             $comAsignarComexEjecutivo->setEjecutivoCuenta($this);
  3608.         }
  3609.         return $this;
  3610.     }
  3611.     public function removeComAsignarComexEjecutivo(ComAsignarComex $comAsignarComexEjecutivo): static
  3612.     {
  3613.         if ($this->comAsignarComexEjecutivo->removeElement($comAsignarComexEjecutivo)) {
  3614.             // set the owning side to null (unless already changed)
  3615.             if ($comAsignarComexEjecutivo->getEjecutivoCuenta() === $this) {
  3616.                 $comAsignarComexEjecutivo->setEjecutivoCuenta(null);
  3617.             }
  3618.         }
  3619.         return $this;
  3620.     }
  3621.     /**
  3622.      * @return Collection<int, ComImportaciones>
  3623.      */
  3624.     public function getComImportaciones(): Collection
  3625.     {
  3626.         return $this->comImportaciones;
  3627.     }
  3628.     public function addComImportacione(ComImportaciones $comImportacione): static
  3629.     {
  3630.         if (!$this->comImportaciones->contains($comImportacione)) {
  3631.             $this->comImportaciones->add($comImportacione);
  3632.             $comImportacione->addColaborador($this);
  3633.         }
  3634.         return $this;
  3635.     }
  3636.     public function removeComImportacione(ComImportaciones $comImportacione): static
  3637.     {
  3638.         if ($this->comImportaciones->removeElement($comImportacione)) {
  3639.             $comImportacione->removeColaborador($this);
  3640.         }
  3641.         return $this;
  3642.     }
  3643.     /**
  3644.      * @return Collection<int, ComComex>
  3645.      */
  3646.     public function getComComex(): Collection
  3647.     {
  3648.         return $this->comComex;
  3649.     }
  3650.     public function addComComex(ComComex $comComex): static
  3651.     {
  3652.         if (!$this->comComex->contains($comComex)) {
  3653.             $this->comComex->add($comComex);
  3654.             $comComex->addColaborador($this);
  3655.         }
  3656.         return $this;
  3657.     }
  3658.     public function removeComComex(ComComex $comComex): static
  3659.     {
  3660.         if ($this->comComex->removeElement($comComex)) {
  3661.             $comComex->removeColaborador($this);
  3662.         }
  3663.         return $this;
  3664.     }
  3665.     /**
  3666.      * @return Collection<int, ComOperacionesBodega>
  3667.      */
  3668.     public function getComOperacionesBodegas(): Collection
  3669.     {
  3670.         return $this->comOperacionesBodegas;
  3671.     }
  3672.     public function addComOperacionesBodega(ComOperacionesBodega $comOperacionesBodega): static
  3673.     {
  3674.         if (!$this->comOperacionesBodegas->contains($comOperacionesBodega)) {
  3675.             $this->comOperacionesBodegas->add($comOperacionesBodega);
  3676.             $comOperacionesBodega->addColaborador($this);
  3677.         }
  3678.         return $this;
  3679.     }
  3680.     public function removeComOperacionesBodega(ComOperacionesBodega $comOperacionesBodega): static
  3681.     {
  3682.         if ($this->comOperacionesBodegas->removeElement($comOperacionesBodega)) {
  3683.             $comOperacionesBodega->removeColaborador($this);
  3684.         }
  3685.         return $this;
  3686.     }
  3687.     /**
  3688.      * @return Collection<int, ComComercial>
  3689.      */
  3690.     public function getComComercials(): Collection
  3691.     {
  3692.         return $this->comComercials;
  3693.     }
  3694.     public function addComComercial(ComComercial $comComercial): static
  3695.     {
  3696.         if (!$this->comComercials->contains($comComercial)) {
  3697.             $this->comComercials->add($comComercial);
  3698.             $comComercial->addColaborador($this);
  3699.         }
  3700.         return $this;
  3701.     }
  3702.     public function removeComComercial(ComComercial $comComercial): static
  3703.     {
  3704.         if ($this->comComercials->removeElement($comComercial)) {
  3705.             $comComercial->removeColaborador($this);
  3706.         }
  3707.         return $this;
  3708.     }
  3709.     /**
  3710.      * @return Collection<int, ComFinanzas>
  3711.      */
  3712.     public function getComFinanzas(): Collection
  3713.     {
  3714.         return $this->comFinanzas;
  3715.     }
  3716.     public function addComFinanza(ComFinanzas $comFinanza): static
  3717.     {
  3718.         if (!$this->comFinanzas->contains($comFinanza)) {
  3719.             $this->comFinanzas->add($comFinanza);
  3720.             $comFinanza->addColaborador($this);
  3721.         }
  3722.         return $this;
  3723.     }
  3724.     public function removeComFinanza(ComFinanzas $comFinanza): static
  3725.     {
  3726.         if ($this->comFinanzas->removeElement($comFinanza)) {
  3727.             $comFinanza->removeColaborador($this);
  3728.         }
  3729.         return $this;
  3730.     }
  3731.     /**
  3732.      * @return Collection<int, ComGerencia>
  3733.      */
  3734.     public function getComGerencias(): Collection
  3735.     {
  3736.         return $this->comGerencias;
  3737.     }
  3738.     public function addComGerencia(ComGerencia $comGerencia): static
  3739.     {
  3740.         if (!$this->comGerencias->contains($comGerencia)) {
  3741.             $this->comGerencias->add($comGerencia);
  3742.             $comGerencia->addColaborador($this);
  3743.         }
  3744.         return $this;
  3745.     }
  3746.     public function removeComGerencia(ComGerencia $comGerencia): static
  3747.     {
  3748.         if ($this->comGerencias->removeElement($comGerencia)) {
  3749.             $comGerencia->removeColaborador($this);
  3750.         }
  3751.         return $this;
  3752.     }
  3753.     /**
  3754.      * @return Collection<int, ComHojaVidaAsociado>
  3755.      */
  3756.     public function getComHojaVidaAsociados(): Collection
  3757.     {
  3758.         return $this->comHojaVidaAsociados;
  3759.     }
  3760.     public function addComHojaVidaAsociado(ComHojaVidaAsociado $comHojaVidaAsociado): static
  3761.     {
  3762.         if (!$this->comHojaVidaAsociados->contains($comHojaVidaAsociado)) {
  3763.             $this->comHojaVidaAsociados->add($comHojaVidaAsociado);
  3764.             $comHojaVidaAsociado->addUsuariosNotificar($this);
  3765.         }
  3766.         return $this;
  3767.     }
  3768.     public function removeComHojaVidaAsociado(ComHojaVidaAsociado $comHojaVidaAsociado): static
  3769.     {
  3770.         if ($this->comHojaVidaAsociados->removeElement($comHojaVidaAsociado)) {
  3771.             $comHojaVidaAsociado->removeUsuariosNotificar($this);
  3772.         }
  3773.         return $this;
  3774.     }
  3775.     /**
  3776.      * @return Collection<int, ComVisitaSeguridad>
  3777.      */
  3778.     public function getComVisitaSeguridads(): Collection
  3779.     {
  3780.         return $this->comVisitaSeguridads;
  3781.     }
  3782.     public function addComVisitaSeguridad(ComVisitaSeguridad $comVisitaSeguridad): static
  3783.     {
  3784.         if (!$this->comVisitaSeguridads->contains($comVisitaSeguridad)) {
  3785.             $this->comVisitaSeguridads->add($comVisitaSeguridad);
  3786.             $comVisitaSeguridad->setResponsableComercial($this);
  3787.         }
  3788.         return $this;
  3789.     }
  3790.     public function removeComVisitaSeguridad(ComVisitaSeguridad $comVisitaSeguridad): static
  3791.     {
  3792.         if ($this->comVisitaSeguridads->removeElement($comVisitaSeguridad)) {
  3793.             // set the owning side to null (unless already changed)
  3794.             if ($comVisitaSeguridad->getResponsableComercial() === $this) {
  3795.                 $comVisitaSeguridad->setResponsableComercial(null);
  3796.             }
  3797.         }
  3798.         return $this;
  3799.     }
  3800.     /**
  3801.      * @return Collection<int, ComGestionCompromisos>
  3802.      */
  3803.     public function getComGestionCompromisos(): Collection
  3804.     {
  3805.         return $this->comGestionCompromisos;
  3806.     }
  3807.     public function addComGestionCompromiso(ComGestionCompromisos $comGestionCompromiso): static
  3808.     {
  3809.         if (!$this->comGestionCompromisos->contains($comGestionCompromiso)) {
  3810.             $this->comGestionCompromisos->add($comGestionCompromiso);
  3811.             $comGestionCompromiso->setEjectivoComercial($this);
  3812.         }
  3813.         return $this;
  3814.     }
  3815.     public function removeComGestionCompromiso(ComGestionCompromisos $comGestionCompromiso): static
  3816.     {
  3817.         if ($this->comGestionCompromisos->removeElement($comGestionCompromiso)) {
  3818.             // set the owning side to null (unless already changed)
  3819.             if ($comGestionCompromiso->getEjectivoComercial() === $this) {
  3820.                 $comGestionCompromiso->setEjectivoComercial(null);
  3821.             }
  3822.         }
  3823.         return $this;
  3824.     }
  3825.     public function getOtrosDocumentos(): ?array
  3826.     {
  3827.         return $this->otrosDocumentos;
  3828.     }
  3829.     public function setOtrosDocumentos(?array $otrosDocumentos): static
  3830.     {
  3831.         $this->otrosDocumentos $otrosDocumentos;
  3832.         return $this;
  3833.     }
  3834.     public function getNombreOtrosDocumentos(): ?array
  3835.     {
  3836.         return $this->nombreOtrosDocumentos;
  3837.     }
  3838.     public function setNombreOtrosDocumentos(?array $nombreOtrosDocumentos): static
  3839.     {
  3840.         $this->nombreOtrosDocumentos $nombreOtrosDocumentos;
  3841.         return $this;
  3842.     }
  3843.     public function getTallaCamisa(): ?string
  3844.     {
  3845.         return $this->tallaCamisa;
  3846.     }
  3847.     public function setTallaCamisa(?string $tallaCamisa): static
  3848.     {
  3849.         $this->tallaCamisa $tallaCamisa;
  3850.         return $this;
  3851.     }
  3852.     public function getTallaPantalon(): ?string
  3853.     {
  3854.         return $this->tallaPantalon;
  3855.     }
  3856.     public function setTallaPantalon(?string $tallaPantalon): static
  3857.     {
  3858.         $this->tallaPantalon $tallaPantalon;
  3859.         return $this;
  3860.     }
  3861.     public function getTallaBotas(): ?string
  3862.     {
  3863.         return $this->tallaBotas;
  3864.     }
  3865.     public function setTallaBotas(?string $tallaBotas): static
  3866.     {
  3867.         $this->tallaBotas $tallaBotas;
  3868.         return $this;
  3869.     }
  3870.     public function getDiscapacidades(): ?string
  3871.     {
  3872.         return $this->discapacidades;
  3873.     }
  3874.     public function setDiscapacidades(?string $discapacidades): static
  3875.     {
  3876.         $this->discapacidades $discapacidades;
  3877.         return $this;
  3878.     }
  3879.     public function getTituloObtenido(): ?string
  3880.     {
  3881.         return $this->tituloObtenido;
  3882.     }
  3883.     public function setTituloObtenido(?string $tituloObtenido): static
  3884.     {
  3885.         $this->tituloObtenido $tituloObtenido;
  3886.         return $this;
  3887.     }
  3888.     public function getInstitucion(): ?string
  3889.     {
  3890.         return $this->institucion;
  3891.     }
  3892.     public function setInstitucion(?string $institucion): static
  3893.     {
  3894.         $this->institucion $institucion;
  3895.         return $this;
  3896.     }
  3897.     public function getModalidadEstudio(): ?ParModalidadTrabajo
  3898.     {
  3899.         return $this->modalidadEstudio;
  3900.     }
  3901.     public function setModalidadEstudio(?ParModalidadTrabajo $modalidadEstudio): static
  3902.     {
  3903.         $this->modalidadEstudio $modalidadEstudio;
  3904.         return $this;
  3905.     }
  3906.     public function getCualProteccionExequial(): ?string
  3907.     {
  3908.         return $this->cualProteccionExequial;
  3909.     }
  3910.     public function setCualProteccionExequial(?string $cualProteccionExequial): static
  3911.     {
  3912.         $this->cualProteccionExequial $cualProteccionExequial;
  3913.         return $this;
  3914.     }
  3915.     public function getFondoEmpleados(): ?string
  3916.     {
  3917.         return $this->fondoEmpleados;
  3918.     }
  3919.     public function setFondoEmpleados(?string $fondoEmpleados): static
  3920.     {
  3921.         $this->fondoEmpleados $fondoEmpleados;
  3922.         return $this;
  3923.     }
  3924.     public function getCualDeportePractica(): ?string
  3925.     {
  3926.         return $this->cualDeportePractica;
  3927.     }
  3928.     public function setCualDeportePractica(?string $cualDeportePractica): static
  3929.     {
  3930.         $this->cualDeportePractica $cualDeportePractica;
  3931.         return $this;
  3932.     }
  3933.     public function getCualEnfermedadDiagnosticada(): ?string
  3934.     {
  3935.         return $this->cualEnfermedadDiagnosticada;
  3936.     }
  3937.     public function setCualEnfermedadDiagnosticada(?string $cualEnfermedadDiagnosticada): static
  3938.     {
  3939.         $this->cualEnfermedadDiagnosticada $cualEnfermedadDiagnosticada;
  3940.         return $this;
  3941.     }
  3942.     public function getParticipaActividades(): ?string
  3943.     {
  3944.         return $this->participaActividades;
  3945.     }
  3946.     public function setParticipaActividades(?string $participaActividades): static
  3947.     {
  3948.         $this->participaActividades $participaActividades;
  3949.         return $this;
  3950.     }
  3951.     public function getConsumeAlcohol(): ?string
  3952.     {
  3953.         return $this->consumeAlcohol;
  3954.     }
  3955.     public function setConsumeAlcohol(?string $consumeAlcohol): static
  3956.     {
  3957.         $this->consumeAlcohol $consumeAlcohol;
  3958.         return $this;
  3959.     }
  3960.     public function getFrecuenciaAlcohol(): ?string
  3961.     {
  3962.         return $this->frecuenciaAlcohol;
  3963.     }
  3964.     public function setFrecuenciaAlcohol(?string $frecuenciaAlcohol): static
  3965.     {
  3966.         $this->frecuenciaAlcohol $frecuenciaAlcohol;
  3967.         return $this;
  3968.     }
  3969.     public function getPromedioFuma(): ?string
  3970.     {
  3971.         return $this->promedioFuma;
  3972.     }
  3973.     public function setPromedioFuma(?string $promedioFuma): static
  3974.     {
  3975.         $this->promedioFuma $promedioFuma;
  3976.         return $this;
  3977.     }
  3978.     /**
  3979.      * @return Collection<int, GHRegistroInscripcionReposicion>
  3980.      */
  3981.     public function getGHRegistroInscripcionReposicions(): Collection
  3982.     {
  3983.         return $this->gHRegistroInscripcionReposicions;
  3984.     }
  3985.     public function addGHRegistroInscripcionReposicion(GHRegistroInscripcionReposicion $gHRegistroInscripcionReposicion): static
  3986.     {
  3987.         if (!$this->gHRegistroInscripcionReposicions->contains($gHRegistroInscripcionReposicion)) {
  3988.             $this->gHRegistroInscripcionReposicions->add($gHRegistroInscripcionReposicion);
  3989.             $gHRegistroInscripcionReposicion->setPersona($this);
  3990.         }
  3991.         return $this;
  3992.     }
  3993.     public function removeGHRegistroInscripcionReposicion(GHRegistroInscripcionReposicion $gHRegistroInscripcionReposicion): static
  3994.     {
  3995.         if ($this->gHRegistroInscripcionReposicions->removeElement($gHRegistroInscripcionReposicion)) {
  3996.             // set the owning side to null (unless already changed)
  3997.             if ($gHRegistroInscripcionReposicion->getPersona() === $this) {
  3998.                 $gHRegistroInscripcionReposicion->setPersona(null);
  3999.             }
  4000.         }
  4001.         return $this;
  4002.     }
  4003.     public function getSalario(): ?string
  4004.     {
  4005.         return $this->salario;
  4006.     }
  4007.     public function setSalario(?string $salario): static
  4008.     {
  4009.         $this->salario $salario;
  4010.         return $this;
  4011.     }
  4012.     /**
  4013.      * @return Collection<int, GHRegistroOpainReposicion>
  4014.      */
  4015.     public function getGHRegistroOpainReposicions(): Collection
  4016.     {
  4017.         return $this->gHRegistroOpainReposicions;
  4018.     }
  4019.     public function addGHRegistroOpainReposicion(GHRegistroOpainReposicion $gHRegistroOpainReposicion): static
  4020.     {
  4021.         if (!$this->gHRegistroOpainReposicions->contains($gHRegistroOpainReposicion)) {
  4022.             $this->gHRegistroOpainReposicions->add($gHRegistroOpainReposicion);
  4023.             $gHRegistroOpainReposicion->setTerPersona($this);
  4024.         }
  4025.         return $this;
  4026.     }
  4027.     public function removeGHRegistroOpainReposicion(GHRegistroOpainReposicion $gHRegistroOpainReposicion): static
  4028.     {
  4029.         if ($this->gHRegistroOpainReposicions->removeElement($gHRegistroOpainReposicion)) {
  4030.             // set the owning side to null (unless already changed)
  4031.             if ($gHRegistroOpainReposicion->getTerPersona() === $this) {
  4032.                 $gHRegistroOpainReposicion->setTerPersona(null);
  4033.             }
  4034.         }
  4035.         return $this;
  4036.     }
  4037.     public function getTipoContrato(): ?ParTipoContrato
  4038.     {
  4039.         return $this->tipoContrato;
  4040.     }
  4041.     public function setTipoContrato(?ParTipoContrato $tipoContrato): static
  4042.     {
  4043.         $this->tipoContrato $tipoContrato;
  4044.         return $this;
  4045.     }
  4046.     public function getEmpresa(): ?TerEmpresa
  4047.     {
  4048.         return $this->empresa;
  4049.     }
  4050.     public function setEmpresa(?TerEmpresa $empresa): static
  4051.     {
  4052.         $this->empresa $empresa;
  4053.         return $this;
  4054.     }
  4055.     /**
  4056.      * @return Collection<int, GHReentrenamientoProceso>
  4057.      */
  4058.     public function getGHReentrenamientoProcesos(): Collection
  4059.     {
  4060.         return $this->gHReentrenamientoProcesos;
  4061.     }
  4062.     public function addGHReentrenamientoProceso(GHReentrenamientoProceso $gHReentrenamientoProceso): static
  4063.     {
  4064.         if (!$this->gHReentrenamientoProcesos->contains($gHReentrenamientoProceso)) {
  4065.             $this->gHReentrenamientoProcesos->add($gHReentrenamientoProceso);
  4066.             $gHReentrenamientoProceso->setPersonaResponsable($this);
  4067.         }
  4068.         return $this;
  4069.     }
  4070.     public function removeGHReentrenamientoProceso(GHReentrenamientoProceso $gHReentrenamientoProceso): static
  4071.     {
  4072.         if ($this->gHReentrenamientoProcesos->removeElement($gHReentrenamientoProceso)) {
  4073.             // set the owning side to null (unless already changed)
  4074.             if ($gHReentrenamientoProceso->getPersonaResponsable() === $this) {
  4075.                 $gHReentrenamientoProceso->setPersonaResponsable(null);
  4076.             }
  4077.         }
  4078.         return $this;
  4079.     }
  4080.     /**
  4081.      * @return Collection<int, GHDesvinculacion>
  4082.      */
  4083.     public function getGHDesvinculacions(): Collection
  4084.     {
  4085.         return $this->gHDesvinculacions;
  4086.     }
  4087.     public function addGHDesvinculacion(GHDesvinculacion $gHDesvinculacion): static
  4088.     {
  4089.         if (!$this->gHDesvinculacions->contains($gHDesvinculacion)) {
  4090.             $this->gHDesvinculacions->add($gHDesvinculacion);
  4091.             $gHDesvinculacion->setPersonaCreaDesvinculacion($this);
  4092.         }
  4093.         return $this;
  4094.     }
  4095.     public function removeGHDesvinculacion(GHDesvinculacion $gHDesvinculacion): static
  4096.     {
  4097.         if ($this->gHDesvinculacions->removeElement($gHDesvinculacion)) {
  4098.             // set the owning side to null (unless already changed)
  4099.             if ($gHDesvinculacion->getPersonaCreaDesvinculacion() === $this) {
  4100.                 $gHDesvinculacion->setPersonaCreaDesvinculacion(null);
  4101.             }
  4102.         }
  4103.         return $this;
  4104.     }
  4105.     /**
  4106.      * @return Collection<int, GHNovedadNomina>
  4107.      */
  4108.     public function getGHNovedadNominas(): Collection
  4109.     {
  4110.         return $this->gHNovedadNominas;
  4111.     }
  4112.     public function addGHNovedadNomina(GHNovedadNomina $gHNovedadNomina): static
  4113.     {
  4114.         if (!$this->gHNovedadNominas->contains($gHNovedadNomina)) {
  4115.             $this->gHNovedadNominas->add($gHNovedadNomina);
  4116.             $gHNovedadNomina->setAutorizadoPorLicNoR($this);
  4117.         }
  4118.         return $this;
  4119.     }
  4120.     public function removeGHNovedadNomina(GHNovedadNomina $gHNovedadNomina): static
  4121.     {
  4122.         if ($this->gHNovedadNominas->removeElement($gHNovedadNomina)) {
  4123.             // set the owning side to null (unless already changed)
  4124.             if ($gHNovedadNomina->getAutorizadoPorLicNoR() === $this) {
  4125.                 $gHNovedadNomina->setAutorizadoPorLicNoR(null);
  4126.             }
  4127.         }
  4128.         return $this;
  4129.     }
  4130.     public function getCorreoCorporativo(): ?string
  4131.     {
  4132.         return $this->correoCorporativo;
  4133.     }
  4134.     public function setCorreoCorporativo(?string $correoCorporativo): static
  4135.     {
  4136.         $this->correoCorporativo $correoCorporativo;
  4137.         return $this;
  4138.     }
  4139. }