Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. public interface Person {
  2. Date getDateOfBirth();
  3. String getPlaceOfBirth();
  4. String getRegisterPlace();
  5. String getLivingPlace();
  6. Phone getPhone();
  7. Email getEmail();
  8. Phone getPhoneHome();
  9. Phone getPhoneWork();
  10. Map<DocumentIdentityType, ? extends DocumentIdentity> getIdentityDocs();
  11. String getName();
  12. String getMiddleName();
  13. String getSurname();
  14. Gender getGender();
  15. Organization getOrganization();
  16. String getOgrnip();
  17. Date getOgrnipDate();
  18. String getFioRodPadej();
  19. String getCitizenship();
  20. String getNationality();
  21. String getConfession();
  22. String getWebSite();
  23. Date getInnDate();
  24. String getInnNum();
  25. Date getSnilsDate();
  26. String getSnilsNum();
  27. String getHealthInsuranceDep();
  28. String getPolisoms();
  29. Date getHealthInsuranceDate();
  30. Address getLocationAddress();
  31. String getWorkPlaceOrganization();
  32. String getWorkPlaceDepartment();
  33. String getActivities();
  34. String getPost();
  35. Address getRegistrationAddress();
  36. com.atc.mfc.core.db.entities.enums.PersonType getPersonType();
  37. Address getIpWorkPlaceAddress();
  38. String getIpTitle();
  39. DocumentIdentityType getCurrentIdentityDocType();
  40. DocumentIdentity getCurrentIdentityDoc();
  41. Set<TrusteePerson> getTrustedPersons();
  42. boolean isSmsConsent();
  43. boolean isEmailConsent();
  44. String getFormattedSnils();
  45. String getFormattedMobile();
  46. FamilyStatus getFamilyStatus();
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement