diff --git a/trunk/src/AppBundle/Entity/TravelNationality.php b/trunk/src/AppBundle/Entity/TravelNationality.php new file mode 100644 index 00000000..ef840de7 --- /dev/null +++ b/trunk/src/AppBundle/Entity/TravelNationality.php @@ -0,0 +1,68 @@ +id; + } + + /** + * Set name + * + * @param string $name + * + * @return TravelNationality + */ + public function setName($name) + { + $this->name = $name; + + return $this; + } + + /** + * Get name + * + * @return string + */ + public function getName() + { + return $this->name; + } + +} + diff --git a/trunk/src/AppBundle/Entity/TravelNationalityRequirement.php b/trunk/src/AppBundle/Entity/TravelNationalityRequirement.php new file mode 100644 index 00000000..0616099d --- /dev/null +++ b/trunk/src/AppBundle/Entity/TravelNationalityRequirement.php @@ -0,0 +1,128 @@ +id; + } + + /** + * Set travelCountryId + * + * @param integer $travelCountryId + * + * @return TravelNationalityRequirement + */ + public function setTravelCountryId($travelCountryId) + { + $this->travelCountryId = $travelCountryId; + + return $this; + } + + /** + * Get travelCountryId + * + * @return int + */ + public function getTravelCountryId() + { + return $this->travelCountryId; + } + + /** + * Set travelNationalityId + * + * @param integer $travelNationalityId + * + * @return TravelNationalityRequirement + */ + public function setTravelNationalityId($travelNationalityId) + { + $this->travelNationalityId = $travelNationalityId; + + return $this; + } + + /** + * Get travelNationalityId + * + * @return int + */ + public function getTravelNationalityId() + { + return $this->travelNationalityId; + } + + /** + * Set text + * + * @param string $text + * + * @return TravelNationalityRequirement + */ + public function setText($text) + { + $this->text = $text; + + return $this; + } + + /** + * Get text + * + * @return string + */ + public function getText() + { + return $this->text; + } +} +