use of gov.ca.cwds.data.legacy.cms.entity.ClientOtherEthnicity in project api-core by ca-cwds.
the class R00742Test method createClientOtherEthnicity.
private static ClientOtherEthnicity createClientOtherEthnicity(Client client, Short ethnicityCode) {
ClientOtherEthnicity clientScpEthnicity = new ClientOtherEthnicity();
clientScpEthnicity.setClient(client);
clientScpEthnicity.setEthnicityCode(ethnicityCode);
return clientScpEthnicity;
}
Aggregations