src/Entity/VisaApplicant.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\VisaApplicantRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=VisaApplicantRepository::class)
  7.  */
  8. class VisaApplicant implements ApplicantInterface
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $firstName;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $lastName;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $otherNames;
  28.     /**
  29.      * @ORM\Column(type="string", length=20)
  30.      */
  31.     private $gender;
  32.     /**
  33.      * @ORM\Column(type="string", length=50)
  34.      */
  35.     private $maritalStatus;
  36.     /**
  37.      * @ORM\Column(type="date")
  38.      */
  39.     private $dateOfBirth;
  40.     /**
  41.      * @ORM\Column(type="string", length=255)
  42.      */
  43.     private $placeofBirth;
  44.     /**
  45.      * @ORM\Column(type="string", length=100)
  46.      */
  47.     private $city;
  48.     /**
  49.      * @ORM\Column(type="string", length=255)
  50.      */
  51.     private $country;
  52.     /**
  53.      * @ORM\Column(type="string", length=255)
  54.      */
  55.     private $nationalCardNumber;
  56.     /**
  57.      * @ORM\Column(type="string", length=255, nullable=true)
  58.      */
  59.     private $qualification;
  60.     /**
  61.      * @ORM\Column(type="string", length=255)
  62.      */
  63.     private $currentNationality;
  64.     /**
  65.      * @ORM\Column(type="string", length=255)
  66.      */
  67.     private $birthNationality;
  68.     /**
  69.      * @ORM\Column(type="string", length=255, nullable=true)
  70.      */
  71.     private $pastNationality;
  72.     /**
  73.      * @ORM\Column(type="string", length=255)
  74.      */
  75.     private $passportNumber;
  76.     /**
  77.      * @ORM\Column(type="date")
  78.      */
  79.     private $dateOfIssue;
  80.     /**
  81.      * @ORM\Column(type="string", length=255, nullable=true)
  82.      */
  83.     private $passportIcNumber;
  84.     /**
  85.      * @ORM\Column(type="date")
  86.      */
  87.     private $passportExpiryDate;
  88.     /**
  89.      * @ORM\Column(type="boolean")
  90.      */
  91.     private $hasAnyIdentity;
  92.     /**
  93.      * @ORM\Column(type="string", length=255, nullable=true)
  94.      */
  95.     private $otherIdentityCountry;
  96.     /**
  97.      * @ORM\Column(type="string", length=255, nullable=true)
  98.      */
  99.     private $otherIdentyPlaceIssue;
  100.     /**
  101.      * @ORM\Column(type="string", length=255, nullable=true)
  102.      */
  103.     private $otherIdentityPassportNnumber;
  104.     /**
  105.      * @ORM\Column(type="date", nullable=true)
  106.      */
  107.     private $otherIdentityDateOfIssue;
  108.     /**
  109.      * @ORM\Column(type="string", length=255, nullable=true)
  110.      */
  111.     private $otherIdentityNationality;
  112.     /**
  113.      * @ORM\Column(type="string", length=20)
  114.      */
  115.     private $contactPhoneNumber;
  116.     /**
  117.      * @ORM\Column(type="string", length=255)
  118.      */
  119.     private $contactPresentAddress;
  120.     /**
  121.      * @ORM\Column(type="string", length=255)
  122.      */
  123.     private $contactEmailAddress;
  124.     /**
  125.      * @ORM\Column(type="string", length=255, nullable=true)
  126.      */
  127.     private $contactPermanentAddress;
  128.     /**
  129.      * @ORM\Column(type="string", length=255)
  130.      */
  131.     private $presentOccupation;
  132.     /**
  133.      * @ORM\Column(type="string", length=100, nullable=true)
  134.      */
  135.     private $designation;
  136.     /**
  137.      * @ORM\Column(type="string", length=255)
  138.      */
  139.     private $businessName;
  140.     /**
  141.      * @ORM\Column(type="string", length=100, nullable=true)
  142.      */
  143.     private $employerAddress;
  144.     /**
  145.      * @ORM\Column(type="string", length=255, nullable=true)
  146.      */
  147.     private $employerPhoneNumber;
  148.     /**
  149.      * @ORM\Column(type="string", length=255, nullable=true)
  150.      */
  151.     private $pastOccupation;
  152.     /**
  153.      * @ORM\Column(type="boolean")
  154.      */
  155.     private $isInSecurityForce;
  156.     /**
  157.      * @ORM\Column(type="string", length=255, nullable=true)
  158.      */
  159.     private $securityOrganization;
  160.     /**
  161.      * @ORM\Column(type="string", length=255, nullable=true)
  162.      */
  163.     private $securityDesignation;
  164.     /**
  165.      * @ORM\Column(type="string", length=255, nullable=true)
  166.      */
  167.     private $securityPosting;
  168.     /**
  169.      * @ORM\Column(type="string", length=255, nullable=true)
  170.      */
  171.     private $securityRank;
  172.     /**
  173.      * @ORM\Column(type="string", length=100)
  174.      */
  175.     private $surname;
  176.     /**
  177.      * @ORM\Column(type="string", length=10)
  178.      */
  179.     private $sex;
  180.     /**
  181.      * @ORM\Column(type="string", length=255, nullable=true)
  182.      */
  183.     private $previousName;
  184.     /**
  185.      * @ORM\Column(type="string", length=255, nullable=true)
  186.      */
  187.     private $religion;
  188.     /**
  189.      * @ORM\Column(type="string", length=255)
  190.      */
  191.     private $townCity;
  192.     /**
  193.      * @ORM\Column(type="string", length=255)
  194.      */
  195.     private $countryOfBirth;
  196.     /**
  197.      * @ORM\Column(type="string", length=100, nullable=true)
  198.      */
  199.     private $citizenshipNationalIdNo;
  200.     /**
  201.      * @ORM\Column(type="string", length=255, nullable=true)
  202.      */
  203.     private $educationalQualification;
  204.     /**
  205.      * @ORM\Column(type="string", length=255)
  206.      */
  207.     private $nationalityByBirthOrNaturalization;
  208.     /**
  209.      * @ORM\Column(type="string", length=255, nullable=true)
  210.      */
  211.     private $previousNationality;
  212.     /**
  213.      * @ORM\Column(type="date", nullable=true)
  214.      */
  215.     private $passportDateOfIssue;
  216.     /**
  217.      * @ORM\Column(type="string", length=255, nullable=true)
  218.      */
  219.     private $passportPlaceOfIssue;
  220.     /**
  221.      * @ORM\Column(type="date", nullable=true)
  222.      */
  223.     private $passportDateOfExpiry;
  224.     /**
  225.      * @ORM\Column(type="boolean", nullable=true)
  226.      */
  227.     private $hasOtherPassportOrIC;
  228.     /**
  229.      * @ORM\Column(type="string", length=255, nullable=true)
  230.      */
  231.     private $otherPassportCountryOfIssue;
  232.     /**
  233.      * @ORM\Column(type="string", length=255, nullable=true)
  234.      */
  235.     private $otherPassportPlaceOfIssue;
  236.     /**
  237.      * @ORM\Column(type="string", length=255)
  238.      */
  239.     private $otherPassportNumber;
  240.     /**
  241.      * @ORM\Column(type="date", nullable=true)
  242.      */
  243.     private $yes;
  244.     /**
  245.      * @ORM\Column(type="date", nullable=true)
  246.      */
  247.     private $otherPassportDateOfIssue;
  248.     /**
  249.      * @ORM\Column(type="string", length=100, nullable=true)
  250.      */
  251.     private $otherPassportNationality;
  252.     /**
  253.      * @ORM\Column(type="string", length=100)
  254.      */
  255.     private $phoneNumber;
  256.     /**
  257.      * @ORM\Column(type="string", length=100, nullable=true)
  258.      */
  259.     private $mobileNumber;
  260.     /**
  261.      * @ORM\Column(type="string", length=255)
  262.      */
  263.     private $presentAddress;
  264.     /**
  265.      * @ORM\Column(type="string", length=255, nullable=true)
  266.      */
  267.     private $emailAddress;
  268.     /**
  269.      * @ORM\Column(type="string", length=255)
  270.      */
  271.     private $permanentAddress;
  272.     /**
  273.      * @ORM\Column(type="string", length=255, nullable=true)
  274.      */
  275.     private $employerName;
  276.     /**
  277.      * @ORM\Column(type="boolean")
  278.      */
  279.     private $workedWithForces;
  280.     /**
  281.      * @ORM\Column(type="string", length=255)
  282.      */
  283.     private $securityPlaceOfPosting;
  284.     /**
  285.      * @ORM\Column(type="boolean")
  286.      */
  287.     private $declarationStatus;
  288.     public function getId(): ?int
  289.     {
  290.         return $this->id;
  291.     }
  292.     public function getFirstName(): ?string
  293.     {
  294.         return $this->firstName;
  295.     }
  296.     public function setFirstName(string $firstName): self
  297.     {
  298.         $this->firstName $firstName;
  299.         return $this;
  300.     }
  301.     public function getLastName(): ?string
  302.     {
  303.         return $this->lastName;
  304.     }
  305.     public function setLastName(string $lastName): self
  306.     {
  307.         $this->lastName $lastName;
  308.         return $this;
  309.     }
  310.     public function getOtherNames(): ?string
  311.     {
  312.         return $this->otherNames;
  313.     }
  314.     public function setOtherNames(?string $otherNames): self
  315.     {
  316.         $this->otherNames $otherNames;
  317.         return $this;
  318.     }
  319.     public function getGender(): ?string
  320.     {
  321.         return $this->gender;
  322.     }
  323.     public function setGender(string $gender): self
  324.     {
  325.         $this->gender $gender;
  326.         return $this;
  327.     }
  328.     public function getMaritalStatus(): ?string
  329.     {
  330.         return $this->maritalStatus;
  331.     }
  332.     public function setMaritalStatus(string $maritalStatus): self
  333.     {
  334.         $this->maritalStatus $maritalStatus;
  335.         return $this;
  336.     }
  337.     public function getDateOfBirth(): ?\DateTimeInterface
  338.     {
  339.         return $this->dateOfBirth;
  340.     }
  341.     public function setDateOfBirth(\DateTimeInterface $dateOfBirth): self
  342.     {
  343.         $this->dateOfBirth $dateOfBirth;
  344.         return $this;
  345.     }
  346.     public function getPlaceofBirth(): ?string
  347.     {
  348.         return $this->placeofBirth;
  349.     }
  350.     public function setPlaceofBirth(string $placeofBirth): self
  351.     {
  352.         $this->placeofBirth $placeofBirth;
  353.         return $this;
  354.     }
  355.     public function getCity(): ?string
  356.     {
  357.         return $this->city;
  358.     }
  359.     public function setCity(string $city): self
  360.     {
  361.         $this->city $city;
  362.         return $this;
  363.     }
  364.     public function getCountry(): ?string
  365.     {
  366.         return $this->country;
  367.     }
  368.     public function setCountry(string $country): self
  369.     {
  370.         $this->country $country;
  371.         return $this;
  372.     }
  373.     public function getNationalCardNumber(): ?string
  374.     {
  375.         return $this->nationalCardNumber;
  376.     }
  377.     public function setNationalCardNumber(string $nationalCardNumber): self
  378.     {
  379.         $this->nationalCardNumber $nationalCardNumber;
  380.         return $this;
  381.     }
  382.     public function getQualification(): ?string
  383.     {
  384.         return $this->qualification;
  385.     }
  386.     public function setQualification(?string $qualification): self
  387.     {
  388.         $this->qualification $qualification;
  389.         return $this;
  390.     }
  391.     public function getCurrentNationality(): ?string
  392.     {
  393.         return $this->currentNationality;
  394.     }
  395.     public function setCurrentNationality(string $currentNationality): self
  396.     {
  397.         $this->currentNationality $currentNationality;
  398.         return $this;
  399.     }
  400.     public function getBirthNationality(): ?string
  401.     {
  402.         return $this->birthNationality;
  403.     }
  404.     public function setBirthNationality(string $birthNationality): self
  405.     {
  406.         $this->birthNationality $birthNationality;
  407.         return $this;
  408.     }
  409.     public function getPastNationality(): ?string
  410.     {
  411.         return $this->pastNationality;
  412.     }
  413.     public function setPastNationality(?string $pastNationality): self
  414.     {
  415.         $this->pastNationality $pastNationality;
  416.         return $this;
  417.     }
  418.     public function getPassportNumber(): ?string
  419.     {
  420.         return $this->passportNumber;
  421.     }
  422.     public function setPassportNumber(string $passportNumber): self
  423.     {
  424.         $this->passportNumber $passportNumber;
  425.         return $this;
  426.     }
  427.     public function getDateOfIssue(): ?\DateTimeInterface
  428.     {
  429.         return $this->dateOfIssue;
  430.     }
  431.     public function setDateOfIssue(\DateTimeInterface $dateOfIssue): self
  432.     {
  433.         $this->dateOfIssue $dateOfIssue;
  434.         return $this;
  435.     }
  436.     public function getPassportIcNumber(): ?string
  437.     {
  438.         return $this->passportIcNumber;
  439.     }
  440.     public function setPassportIcNumber(?string $passportIcNumber): self
  441.     {
  442.         $this->passportIcNumber $passportIcNumber;
  443.         return $this;
  444.     }
  445.     public function getPassportExpiryDate(): ?\DateTimeInterface
  446.     {
  447.         return $this->passportExpiryDate;
  448.     }
  449.     public function setPassportExpiryDate(\DateTimeInterface $passportExpiryDate): self
  450.     {
  451.         $this->passportExpiryDate $passportExpiryDate;
  452.         return $this;
  453.     }
  454.     public function getHasAnyIdentity(): ?bool
  455.     {
  456.         return $this->hasAnyIdentity;
  457.     }
  458.     public function setHasAnyIdentity(bool $hasAnyIdentity): self
  459.     {
  460.         $this->hasAnyIdentity $hasAnyIdentity;
  461.         return $this;
  462.     }
  463.     public function getOtherIdentityCountry(): ?string
  464.     {
  465.         return $this->otherIdentityCountry;
  466.     }
  467.     public function setOtherIdentityCountry(?string $otherIdentityCountry): self
  468.     {
  469.         $this->otherIdentityCountry $otherIdentityCountry;
  470.         return $this;
  471.     }
  472.     public function getOtherIdentyPlaceIssue(): ?string
  473.     {
  474.         return $this->otherIdentyPlaceIssue;
  475.     }
  476.     public function setOtherIdentyPlaceIssue(?string $otherIdentyPlaceIssue): self
  477.     {
  478.         $this->otherIdentyPlaceIssue $otherIdentyPlaceIssue;
  479.         return $this;
  480.     }
  481.     public function getOtherIdentityPassportNnumber(): ?string
  482.     {
  483.         return $this->otherIdentityPassportNnumber;
  484.     }
  485.     public function setOtherIdentityPassportNnumber(?string $otherIdentityPassportNnumber): self
  486.     {
  487.         $this->otherIdentityPassportNnumber $otherIdentityPassportNnumber;
  488.         return $this;
  489.     }
  490.     public function getOtherIdentityDateOfIssue(): ?\DateTimeInterface
  491.     {
  492.         return $this->otherIdentityDateOfIssue;
  493.     }
  494.     public function setOtherIdentityDateOfIssue(?\DateTimeInterface $otherIdentityDateOfIssue): self
  495.     {
  496.         $this->otherIdentityDateOfIssue $otherIdentityDateOfIssue;
  497.         return $this;
  498.     }
  499.     public function getOtherIdentityNationality(): ?string
  500.     {
  501.         return $this->otherIdentityNationality;
  502.     }
  503.     public function setOtherIdentityNationality(?string $otherIdentityNationality): self
  504.     {
  505.         $this->otherIdentityNationality $otherIdentityNationality;
  506.         return $this;
  507.     }
  508.     public function getContactPhoneNumber(): ?string
  509.     {
  510.         return $this->contactPhoneNumber;
  511.     }
  512.     public function setContactPhoneNumber(string $contactPhoneNumber): self
  513.     {
  514.         $this->contactPhoneNumber $contactPhoneNumber;
  515.         return $this;
  516.     }
  517.     public function getContactPresentAddress(): ?string
  518.     {
  519.         return $this->contactPresentAddress;
  520.     }
  521.     public function setContactPresentAddress(string $contactPresentAddress): self
  522.     {
  523.         $this->contactPresentAddress $contactPresentAddress;
  524.         return $this;
  525.     }
  526.     public function getContactEmailAddress(): ?string
  527.     {
  528.         return $this->contactEmailAddress;
  529.     }
  530.     public function setContactEmailAddress(string $contactEmailAddress): self
  531.     {
  532.         $this->contactEmailAddress $contactEmailAddress;
  533.         return $this;
  534.     }
  535.     public function getContactPermanentAddress(): ?string
  536.     {
  537.         return $this->contactPermanentAddress;
  538.     }
  539.     public function setContactPermanentAddress(?string $contactPermanentAddress): self
  540.     {
  541.         $this->contactPermanentAddress $contactPermanentAddress;
  542.         return $this;
  543.     }
  544.     public function getPresentOccupation(): ?string
  545.     {
  546.         return $this->presentOccupation;
  547.     }
  548.     public function setPresentOccupation(string $presentOccupation): self
  549.     {
  550.         $this->presentOccupation $presentOccupation;
  551.         return $this;
  552.     }
  553.     public function getDesignation(): ?string
  554.     {
  555.         return $this->designation;
  556.     }
  557.     public function setDesignation(?string $designation): self
  558.     {
  559.         $this->designation $designation;
  560.         return $this;
  561.     }
  562.     public function getBusinessName(): ?string
  563.     {
  564.         return $this->businessName;
  565.     }
  566.     public function setBusinessName(string $businessName): self
  567.     {
  568.         $this->businessName $businessName;
  569.         return $this;
  570.     }
  571.     public function getEmployerAddress(): ?string
  572.     {
  573.         return $this->employerAddress;
  574.     }
  575.     public function setEmployerAddress(?string $employerAddress): self
  576.     {
  577.         $this->employerAddress $employerAddress;
  578.         return $this;
  579.     }
  580.     public function getEmployerPhoneNumber(): ?string
  581.     {
  582.         return $this->employerPhoneNumber;
  583.     }
  584.     public function setEmployerPhoneNumber(?string $employerPhoneNumber): self
  585.     {
  586.         $this->employerPhoneNumber $employerPhoneNumber;
  587.         return $this;
  588.     }
  589.     public function getPastOccupation(): ?string
  590.     {
  591.         return $this->pastOccupation;
  592.     }
  593.     public function setPastOccupation(?string $pastOccupation): self
  594.     {
  595.         $this->pastOccupation $pastOccupation;
  596.         return $this;
  597.     }
  598.     public function getIsInSecurityForce(): ?bool
  599.     {
  600.         return $this->isInSecurityForce;
  601.     }
  602.     public function setIsInSecurityForce(bool $isInSecurityForce): self
  603.     {
  604.         $this->isInSecurityForce $isInSecurityForce;
  605.         return $this;
  606.     }
  607.     public function getSecurityOrganization(): ?string
  608.     {
  609.         return $this->securityOrganization;
  610.     }
  611.     public function setSecurityOrganization(?string $securityOrganization): self
  612.     {
  613.         $this->securityOrganization $securityOrganization;
  614.         return $this;
  615.     }
  616.     public function getSecurityDesignation(): ?string
  617.     {
  618.         return $this->securityDesignation;
  619.     }
  620.     public function setSecurityDesignation(?string $securityDesignation): self
  621.     {
  622.         $this->securityDesignation $securityDesignation;
  623.         return $this;
  624.     }
  625.     public function getSecurityPosting(): ?string
  626.     {
  627.         return $this->securityPosting;
  628.     }
  629.     public function setSecurityPosting(?string $securityPosting): self
  630.     {
  631.         $this->securityPosting $securityPosting;
  632.         return $this;
  633.     }
  634.     public function getSecurityRank(): ?string
  635.     {
  636.         return $this->securityRank;
  637.     }
  638.     public function setSecurityRank(?string $securityRank): self
  639.     {
  640.         $this->securityRank $securityRank;
  641.         return $this;
  642.     }
  643.     public function getSurname(): ?string
  644.     {
  645.         return $this->surname;
  646.     }
  647.     public function setSurname(string $surname): self
  648.     {
  649.         $this->surname $surname;
  650.         return $this;
  651.     }
  652.     public function getSex(): ?string
  653.     {
  654.         return $this->sex;
  655.     }
  656.     public function setSex(string $sex): self
  657.     {
  658.         $this->sex $sex;
  659.         return $this;
  660.     }
  661.     public function getPreviousName(): ?string
  662.     {
  663.         return $this->previousName;
  664.     }
  665.     public function setPreviousName(?string $previousName): self
  666.     {
  667.         $this->previousName $previousName;
  668.         return $this;
  669.     }
  670.     public function getReligion(): ?string
  671.     {
  672.         return $this->religion;
  673.     }
  674.     public function setReligion(?string $religion): self
  675.     {
  676.         $this->religion $religion;
  677.         return $this;
  678.     }
  679.     public function getTownCity(): ?string
  680.     {
  681.         return $this->townCity;
  682.     }
  683.     public function setTownCity(string $townCity): self
  684.     {
  685.         $this->townCity $townCity;
  686.         return $this;
  687.     }
  688.     public function getCountryOfBirth(): ?string
  689.     {
  690.         return $this->countryOfBirth;
  691.     }
  692.     public function setCountryOfBirth(string $countryOfBirth): self
  693.     {
  694.         $this->countryOfBirth $countryOfBirth;
  695.         return $this;
  696.     }
  697.     public function getCitizenshipNationalIdNo(): ?string
  698.     {
  699.         return $this->citizenshipNationalIdNo;
  700.     }
  701.     public function setCitizenshipNationalIdNo(?string $citizenshipNationalIdNo): self
  702.     {
  703.         $this->citizenshipNationalIdNo $citizenshipNationalIdNo;
  704.         return $this;
  705.     }
  706.     public function getEducationalQualification(): ?string
  707.     {
  708.         return $this->educationalQualification;
  709.     }
  710.     public function setEducationalQualification(?string $educationalQualification): self
  711.     {
  712.         $this->educationalQualification $educationalQualification;
  713.         return $this;
  714.     }
  715.     public function getNationalityByBirthOrNaturalization(): ?string
  716.     {
  717.         return $this->nationalityByBirthOrNaturalization;
  718.     }
  719.     public function setNationalityByBirthOrNaturalization(string $nationalityByBirthOrNaturalization): self
  720.     {
  721.         $this->nationalityByBirthOrNaturalization $nationalityByBirthOrNaturalization;
  722.         return $this;
  723.     }
  724.     public function getPreviousNationality(): ?string
  725.     {
  726.         return $this->previousNationality;
  727.     }
  728.     public function setPreviousNationality(?string $previousNationality): self
  729.     {
  730.         $this->previousNationality $previousNationality;
  731.         return $this;
  732.     }
  733.     public function getPassportDateOfIssue(): ?\DateTimeInterface
  734.     {
  735.         return $this->passportDateOfIssue;
  736.     }
  737.     public function setPassportDateOfIssue(?\DateTimeInterface $passportDateOfIssue): self
  738.     {
  739.         $this->passportDateOfIssue $passportDateOfIssue;
  740.         return $this;
  741.     }
  742.     public function getPassportPlaceOfIssue(): ?string
  743.     {
  744.         return $this->passportPlaceOfIssue;
  745.     }
  746.     public function setPassportPlaceOfIssue(?string $passportPlaceOfIssue): self
  747.     {
  748.         $this->passportPlaceOfIssue $passportPlaceOfIssue;
  749.         return $this;
  750.     }
  751.     public function getPassportDateOfExpiry(): ?\DateTimeInterface
  752.     {
  753.         return $this->passportDateOfExpiry;
  754.     }
  755.     public function setPassportDateOfExpiry(?\DateTimeInterface $passportDateOfExpiry): self
  756.     {
  757.         $this->passportDateOfExpiry $passportDateOfExpiry;
  758.         return $this;
  759.     }
  760.     public function getHasOtherPassportOrIC(): ?bool
  761.     {
  762.         return $this->hasOtherPassportOrIC;
  763.     }
  764.     public function setHasOtherPassportOrIC(?bool $hasOtherPassportOrIC): self
  765.     {
  766.         $this->hasOtherPassportOrIC $hasOtherPassportOrIC;
  767.         return $this;
  768.     }
  769.     public function getOtherPassportCountryOfIssue(): ?string
  770.     {
  771.         return $this->otherPassportCountryOfIssue;
  772.     }
  773.     public function setOtherPassportCountryOfIssue(?string $otherPassportCountryOfIssue): self
  774.     {
  775.         $this->otherPassportCountryOfIssue $otherPassportCountryOfIssue;
  776.         return $this;
  777.     }
  778.     public function getOtherPassportPlaceOfIssue(): ?string
  779.     {
  780.         return $this->otherPassportPlaceOfIssue;
  781.     }
  782.     public function setOtherPassportPlaceOfIssue(?string $otherPassportPlaceOfIssue): self
  783.     {
  784.         $this->otherPassportPlaceOfIssue $otherPassportPlaceOfIssue;
  785.         return $this;
  786.     }
  787.     public function getOtherPassportNumber(): ?string
  788.     {
  789.         return $this->otherPassportNumber;
  790.     }
  791.     public function setOtherPassportNumber(string $otherPassportNumber): self
  792.     {
  793.         $this->otherPassportNumber $otherPassportNumber;
  794.         return $this;
  795.     }
  796.     public function getYes(): ?\DateTimeInterface
  797.     {
  798.         return $this->yes;
  799.     }
  800.     public function setYes(?\DateTimeInterface $yes): self
  801.     {
  802.         $this->yes $yes;
  803.         return $this;
  804.     }
  805.     public function getOtherPassportDateOfIssue(): ?\DateTimeInterface
  806.     {
  807.         return $this->otherPassportDateOfIssue;
  808.     }
  809.     public function setOtherPassportDateOfIssue(?\DateTimeInterface $otherPassportDateOfIssue): self
  810.     {
  811.         $this->otherPassportDateOfIssue $otherPassportDateOfIssue;
  812.         return $this;
  813.     }
  814.     public function getOtherPassportNationality(): ?string
  815.     {
  816.         return $this->otherPassportNationality;
  817.     }
  818.     public function setOtherPassportNationality(?string $otherPassportNationality): self
  819.     {
  820.         $this->otherPassportNationality $otherPassportNationality;
  821.         return $this;
  822.     }
  823.     public function getPhoneNumber(): ?string
  824.     {
  825.         return $this->phoneNumber;
  826.     }
  827.     public function setPhoneNumber(string $phoneNumber): self
  828.     {
  829.         $this->phoneNumber $phoneNumber;
  830.         return $this;
  831.     }
  832.     public function getMobileNumber(): ?string
  833.     {
  834.         return $this->mobileNumber;
  835.     }
  836.     public function setMobileNumber(?string $mobileNumber): self
  837.     {
  838.         $this->mobileNumber $mobileNumber;
  839.         return $this;
  840.     }
  841.     public function getPresentAddress(): ?string
  842.     {
  843.         return $this->presentAddress;
  844.     }
  845.     public function setPresentAddress(string $presentAddress): self
  846.     {
  847.         $this->presentAddress $presentAddress;
  848.         return $this;
  849.     }
  850.     public function getEmailAddress(): ?string
  851.     {
  852.         return $this->emailAddress;
  853.     }
  854.     public function setEmailAddress(?string $emailAddress): self
  855.     {
  856.         $this->emailAddress $emailAddress;
  857.         return $this;
  858.     }
  859.     public function getPermanentAddress(): ?string
  860.     {
  861.         return $this->permanentAddress;
  862.     }
  863.     public function setPermanentAddress(string $permanentAddress): self
  864.     {
  865.         $this->permanentAddress $permanentAddress;
  866.         return $this;
  867.     }
  868.     public function getEmployerName(): ?string
  869.     {
  870.         return $this->employerName;
  871.     }
  872.     public function setEmployerName(?string $employerName): self
  873.     {
  874.         $this->employerName $employerName;
  875.         return $this;
  876.     }
  877.     public function getWorkedWithForces(): ?bool
  878.     {
  879.         return $this->workedWithForces;
  880.     }
  881.     public function setWorkedWithForces(bool $workedWithForces): self
  882.     {
  883.         $this->workedWithForces $workedWithForces;
  884.         return $this;
  885.     }
  886.     public function getSecurityPlaceOfPosting(): ?string
  887.     {
  888.         return $this->securityPlaceOfPosting;
  889.     }
  890.     public function setSecurityPlaceOfPosting(string $securityPlaceOfPosting): self
  891.     {
  892.         $this->securityPlaceOfPosting $securityPlaceOfPosting;
  893.         return $this;
  894.     }
  895.     public function getDeclarationStatus(): ?bool
  896.     {
  897.         return $this->declarationStatus;
  898.     }
  899.     public function setDeclarationStatus(bool $declarationStatus): self
  900.     {
  901.         $this->declarationStatus $declarationStatus;
  902.         return $this;
  903.     } 
  904. }