Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Done
-
Labels:
-
Story Points:5
Description
Refactor the PatientFingerPrintModel class by using composition i.e. from having fields like
String patientUUID;
String fingerprintTemplate;
int id;
String givenName;
String familyName;
String gender;
to having fields like
Patient patient;
String fingerprintTemplate;
int id;
and make corresponding service level, DAO level, etc. changes