PlaceTextCommandImpl.java 628 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright (c) Andrew Grant of Carrick Software 30/03/2025, 10:42. All rights reserved.
  3. *
  4. */
  5. package scot.carricksoftware.grants.commands.text;
  6. import scot.carricksoftware.grants.domains.places.Place;
  7. public class PlaceTextCommandImpl implements PlaceTextCommand {
  8. private Long Id;
  9. private Place place;
  10. @Override
  11. public Long getId() {
  12. return Id;
  13. }
  14. @Override
  15. public void setId(Long id) {
  16. Id = id;
  17. }
  18. @Override
  19. public Place getPlace() {
  20. return place;
  21. }
  22. @Override
  23. public void setPlace(Place place) {
  24. this.place = place;
  25. }
  26. }