client md sample station. sample type, paket, hrg profile

This commit is contained in:
sindhu
2024-05-09 14:39:58 +07:00
parent 15d66cb80a
commit c6e7f76e85
17 changed files with 864 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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