| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- * Copyright (c) Andrew Grant of Carrick Software 30/03/2025, 10:42. All rights reserved.
- *
- */
- package scot.carricksoftware.grants.commands.text;
- import scot.carricksoftware.grants.domains.places.Place;
- public class PlaceTextCommandImpl implements PlaceTextCommand {
- private Long Id;
- private Place place;
- @Override
- public Long getId() {
- return Id;
- }
- @Override
- public void setId(Long id) {
- Id = id;
- }
- @Override
- public Place getPlace() {
- return place;
- }
- @Override
- public void setPlace(Place place) {
- this.place = place;
- }
- }
|