Design review , class design
- by user3651810
I have class design for storing patient information
could you please review the design and let me know anything wrong or not corrent
I have designed three interfaces
IPatient
IPatientHistory
IPrescription
IPatient
Id
Firstname
LastName
DOB
BloogGroup
Mobile
List<IPatientHistory>
-----------------------
GetPatientById()
GetPatientHistory()
IPatientHistory
HistoryId
PatientId
DateOfVisit
cause
List<IPrescription>
-----------------------
GetPrescription()
IPrescription
PrescriptionId
PatientHistoryId
MedicineName
totalQty
MorningQty
NoonQty
NightQTy