client md harga single
This commit is contained in:
26
handlers/client/mdhargasingle.handlers.go
Normal file
26
handlers/client/mdhargasingle.handlers.go
Normal file
@@ -0,0 +1,26 @@
|
||||
package client_handlers
|
||||
|
||||
import (
|
||||
"cpone/utils"
|
||||
client_mdhargasingle "cpone/views/client/mdhargasingle"
|
||||
|
||||
"github.com/labstack/echo/v4"
|
||||
)
|
||||
|
||||
type MdHargaSingleService interface {
|
||||
}
|
||||
|
||||
func NewMdHargaSingleHandler(us MdHargaSingleService) *MdHargaSingleHandler {
|
||||
return &MdHargaSingleHandler{
|
||||
MdHargaSingleService: us,
|
||||
}
|
||||
}
|
||||
|
||||
type MdHargaSingleHandler struct {
|
||||
MdHargaSingleService MdHargaSingleService
|
||||
}
|
||||
|
||||
func (uh *MdHargaSingleHandler) ShowMdHargaSingle(c echo.Context) error {
|
||||
helo := client_mdhargasingle.Show()
|
||||
return utils.View(c, helo)
|
||||
}
|
||||
@@ -92,4 +92,8 @@ func SetupRoutesClient(app *echo.Echo, appStore db.AppStore) {
|
||||
ldokter := client_services.NewServicesMdDokter(appStore)
|
||||
lhdokter := client_handlers.NewMdDokterHandler(ldokter)
|
||||
public.GET("/md/dokter", lhdokter.ShowMdDokter)
|
||||
|
||||
lhargasingle := client_services.NewServicesMdHargaSingle(appStore)
|
||||
lhhargasingle := client_handlers.NewMdHargaSingleHandler(lhargasingle)
|
||||
public.GET("/md/hargasingle", lhhargasingle.ShowMdHargaSingle)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user