client md dokter

This commit is contained in:
sindhu
2024-05-09 13:06:49 +07:00
parent 20387e14ab
commit 504bec64a2
5 changed files with 216 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package client_services
import "cpone/db"
type ServicesMdDokter struct {
MdDokterStore db.AppStore
}
func NewServicesMdDokter(uStore db.AppStore) *ServicesMdDokter {
return &ServicesMdDokter{
MdDokterStore: uStore,
}
}