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,26 @@
package client_handlers
import (
"cpone/utils"
client_mdhargaprofile "cpone/views/client/mdhargaprofile"
"github.com/labstack/echo/v4"
)
type MdHargaProfileService interface {
}
func NewMdHargaProfileHandler(us MdHargaProfileService) *MdHargaProfileHandler {
return &MdHargaProfileHandler{
MdHargaProfileService: us,
}
}
type MdHargaProfileHandler struct {
MdHargaProfileService MdHargaProfileService
}
func (uh *MdHargaProfileHandler) ShowMdHargaProfile(c echo.Context) error {
helo := client_mdhargaprofile.Show()
return utils.View(c, helo)
}

View File

@@ -0,0 +1,26 @@
package client_handlers
import (
"cpone/utils"
client_mdpaket "cpone/views/client/mdpaket"
"github.com/labstack/echo/v4"
)
type MdPaketService interface {
}
func NewMdPaketHandler(us MdPaketService) *MdPaketHandler {
return &MdPaketHandler{
MdPaketService: us,
}
}
type MdPaketHandler struct {
MdPaketService MdPaketService
}
func (uh *MdPaketHandler) ShowMdPaket(c echo.Context) error {
helo := client_mdpaket.Show()
return utils.View(c, helo)
}

View File

@@ -0,0 +1,26 @@
package client_handlers
import (
"cpone/utils"
client_mdsamplestation "cpone/views/client/mdsamplestation"
"github.com/labstack/echo/v4"
)
type MdSampleStationService interface {
}
func NewMdSampleStationHandler(us MdSampleStationService) *MdSampleStationHandler {
return &MdSampleStationHandler{
MdSampleStationService: us,
}
}
type MdSampleStationHandler struct {
MdSampleStationService MdSampleStationService
}
func (uh *MdSampleStationHandler) ShowMdSampleStation(c echo.Context) error {
helo := client_mdsamplestation.Show()
return utils.View(c, helo)
}

View File

@@ -0,0 +1,26 @@
package client_handlers
import (
"cpone/utils"
client_mdsampletype "cpone/views/client/mdsampletype"
"github.com/labstack/echo/v4"
)
type MdSampleTypeService interface {
}
func NewMdSampleTypeHandler(us MdSampleTypeService) *MdSampleTypeHandler {
return &MdSampleTypeHandler{
MdSampleTypeService: us,
}
}
type MdSampleTypeHandler struct {
MdSampleTypeService MdSampleTypeService
}
func (uh *MdSampleTypeHandler) ShowMdSampleType(c echo.Context) error {
helo := client_mdsampletype.Show()
return utils.View(c, helo)
}

View File

@@ -108,4 +108,20 @@ func SetupRoutesClient(app *echo.Echo, appStore db.AppStore) {
lhargapanel := client_services.NewServicesMdHargaPanel(appStore)
lhhargapanel := client_handlers.NewMdHargaPanelHandler(lhargapanel)
public.GET("/md/hargapanel", lhhargapanel.ShowMdHargaPanel)
lhargaprofile := client_services.NewServicesMdHargaProfile(appStore)
lhhargaprofile := client_handlers.NewMdHargaProfileHandler(lhargaprofile)
public.GET("/md/hargaprofile", lhhargaprofile.ShowMdHargaProfile)
lpaket := client_services.NewServicesMdPaket(appStore)
lhpaket := client_handlers.NewMdPaketHandler(lpaket)
public.GET("/md/paket", lhpaket.ShowMdPaket)
lsamplestation := client_services.NewServicesMdSampleStation(appStore)
lhsamplestation := client_handlers.NewMdSampleStationHandler(lsamplestation)
public.GET("/md/samplestation", lhsamplestation.ShowMdSampleStation)
lsampletype := client_services.NewServicesMdSampleType(appStore)
lhsampletype := client_handlers.NewMdSampleTypeHandler(lsampletype)
public.GET("/md/sampletype", lhsampletype.ShowMdSampleType)
}