public function save()
 {
     $nationalityId = $this->getValue('nationalityId');
     if (!empty($nationalityId)) {
         $nationality = $this->getNationalityService()->getNationalityById($nationalityId);
     } else {
         $nationality = new Nationality();
     }
     $nationality->setName($this->getValue('name'));
     $nationality->save();
 }