client md sample station. sample type, paket, hrg profile
This commit is contained in:
15
services/client/mdhargaprofile.services.go
Normal file
15
services/client/mdhargaprofile.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/client/mdpaket.services.go
Normal file
15
services/client/mdpaket.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/client/mdsamplestation.services.go
Normal file
15
services/client/mdsamplestation.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/client/mdsampletype.services.go
Normal file
15
services/client/mdsampletype.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user