client md result non lab

This commit is contained in:
sindhu
2024-05-09 13:36:36 +07:00
parent 698e81eda7
commit 4b2470ea84
5 changed files with 216 additions and 0 deletions

View File

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