123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- * Copyright (c) Andrew Grant of Carrick Software 20/03/2025, 11:13. All rights reserved.
- *
- */
- package scot.carricksoftware.grants.commands.census;
- import scot.carricksoftware.grants.domains.census.Census;
- import scot.carricksoftware.grants.domains.people.Person;
- import scot.carricksoftware.grants.enums.censusentry.CensusEntryCondition;
- import scot.carricksoftware.grants.enums.censusentry.CensusEntryGaelic;
- import scot.carricksoftware.grants.enums.censusentry.CensusEntryRelationship;
- import scot.carricksoftware.grants.enums.censusentry.CensusEntryWorker;
- public interface CensusEntryCommand {
- Long getId();
- void setId(Long id);
- String getName();
- void setName(String name);
- Census getCensus();
- void setCensus(Census census);
- Person getPerson();
- void setPerson(Person person);
- CensusEntryRelationship getRelationship();
- void setRelationship(CensusEntryRelationship relationship);
- CensusEntryCondition getCondition();
- void setCondition(CensusEntryCondition condition);
- CensusEntryGaelic getGaelic();
- void setGaelic(CensusEntryGaelic gaelic);
- CensusEntryWorker getWorker();
- void setWorker(CensusEntryWorker worker);
- }
|