|
@@ -10,6 +10,7 @@ import scot.carricksoftware.grants.domains.people.Person;
|
|
|
import scot.carricksoftware.grants.enums.censusentry.CensusEntryGaelic;
|
|
|
import scot.carricksoftware.grants.enums.censusentry.CensusEntryRelationship;
|
|
|
import scot.carricksoftware.grants.enums.censusentry.CensusEntryCondition;
|
|
|
+import scot.carricksoftware.grants.enums.censusentry.CensusEntryWorker;
|
|
|
|
|
|
public class CensusEntryCommandImpl implements CensusEntryCommand {
|
|
|
|
|
@@ -27,6 +28,8 @@ public class CensusEntryCommandImpl implements CensusEntryCommand {
|
|
|
|
|
|
private CensusEntryGaelic gaelic;
|
|
|
|
|
|
+ private CensusEntryWorker worker;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -94,4 +97,14 @@ public class CensusEntryCommandImpl implements CensusEntryCommand {
|
|
|
public void setGaelic(CensusEntryGaelic gaelic) {
|
|
|
this.gaelic = gaelic;
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public CensusEntryWorker getWorker() {
|
|
|
+ return worker;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void setWorker(CensusEntryWorker worker) {
|
|
|
+ this.worker = worker;
|
|
|
+ }
|
|
|
}
|