client md panel

This commit is contained in:
sindhu
2024-05-08 16:27:30 +07:00
parent 88d9985ca1
commit 0ba409ab73
6 changed files with 218 additions and 2 deletions

View File

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

View File

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