client md panel
This commit is contained in:
@@ -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,
|
||||
}
|
||||
}
|
||||
|
||||
15
services/client/mdpanel.services.go
Normal file
15
services/client/mdpanel.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user