parcoursmob/handlers/application/solidarity_service.go

26 lines
618 B
Go

package application
import (
"fmt"
"net/http"
)
func (h *ApplicationHandler) SolidarityServiceBookingList(w http.ResponseWriter, r *http.Request) {
h.Renderer.SolidarityServiceBookingList(w, r)
}
func (h *ApplicationHandler) SolidarityServiceBookingCreate(w http.ResponseWriter, r *http.Request) {
h.Renderer.SolidarityServiceBookingCreate(w, r )
}
func (h *ApplicationHandler) SilvermobiBookingUpdate(w http.ResponseWriter, r *http.Request) {
fmt.Println("SilverBookingU")
}
func (h *ApplicationHandler) SilvermobiBookingDelete(w http.ResponseWriter, r *http.Request) {
fmt.Println("SilverBookingD")
}