Merge remote-tracking branch 'origin/andy/routingall'

This commit is contained in:
Sas Andy
2024-05-10 14:48:40 +07:00
47 changed files with 2862 additions and 3 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,15 @@
package corporate_services
import "cpone/db"
type ServicesPatient struct {
PatientStore db.AppStore
}
func NewServicesPatient(uStore db.AppStore) *ServicesPatient {
return &ServicesPatient{
PatientStore: uStore,
}
}

View File

@@ -0,0 +1,14 @@
package public_services
import "cpone/db"
type ServicesLogin struct {
CompanyStore db.AppStore
}
func NewServicesLogin(uStore db.AppStore) *ServicesLogin {
return &ServicesLogin{
CompanyStore: uStore,
}
}