Design review , class design

Posted by user3651810 on Programmers See other posts from Programmers or by user3651810
Published on 2014-06-09T06:49:02Z Indexed on 2014/06/09 9:41 UTC
Read the original article Hit count: 409

Filed under:
|

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

© Programmers or respective owner

Related posts about design

Related posts about uml