Merge remote-tracking branch 'origin/andy/routingall'
This commit is contained in:
15
services/client/clientdashboard.services.go
Normal file
15
services/client/clientdashboard.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/client/mcupreregister.services.go
Normal file
15
services/client/mcupreregister.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/client/mcusetup.services.go
Normal file
15
services/client/mcusetup.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/client/mdcorp.services.go
Normal file
15
services/client/mdcorp.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/client/mdprofile.services.go
Normal file
15
services/client/mdprofile.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/client/mdtest.services.go
Normal file
15
services/client/mdtest.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/client/mduser.services.go
Normal file
15
services/client/mduser.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/client/mdusergroup.services.go
Normal file
15
services/client/mdusergroup.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/client/transaksisamplestation.services.go
Normal file
15
services/client/transaksisamplestation.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
15
services/corporate/patient.services.go
Normal file
15
services/corporate/patient.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
14
services/public/login.services.go
Normal file
14
services/public/login.services.go
Normal 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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user