client md corp

This commit is contained in:
Sas Andy
2024-05-10 09:51:59 +07:00
parent 6a8f7ef656
commit 0bc1cb2a49
5 changed files with 214 additions and 0 deletions

View File

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