patient underdev

This commit is contained in:
Sas Andy
2024-05-10 09:23:40 +07:00
parent f673933c4c
commit f6d177f2f1
5 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package corporate_services
import "cpone/db"
type ServicesPatient struct {
PatientStore db.AppStore
}
func NewServicesPatient(uStore db.AppStore) *ServicesPatient {
return &ServicesPatient{
PatientStore: uStore,
}
}