23 lines
351 B
Go
23 lines
351 B
Go
|
package base
|
||
|
|
||
|
type Client interface {
|
||
|
SyncAll() error
|
||
|
|
||
|
//PatientProfile() (models.PatientProfile, error)
|
||
|
//Allergies()
|
||
|
//Encounters()
|
||
|
//Immunizations()
|
||
|
//Instructions()
|
||
|
//Medications()
|
||
|
//Narratives()
|
||
|
//Organizations()
|
||
|
//PlansOfCare()
|
||
|
//Problems()
|
||
|
//Procedures()
|
||
|
//TestResults()
|
||
|
//Vitals()
|
||
|
//CCD()
|
||
|
//Demographics()
|
||
|
//SocialHistory()
|
||
|
}
|