client md bahan

This commit is contained in:
sindhu
2024-05-08 16:14:07 +07:00
parent 1965359fd5
commit 88d9985ca1
7 changed files with 226 additions and 1 deletions

View File

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