2024-04-24 14:05:21 +00:00
|
|
|
package application
|
2024-04-24 08:22:23 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2024-06-07 09:51:01 +00:00
|
|
|
func (h *ApplicationHandler) SolidarityServiceBookingList(w http.ResponseWriter, r *http.Request) {
|
2024-04-24 14:05:21 +00:00
|
|
|
|
2024-06-07 09:51:01 +00:00
|
|
|
h.Renderer.SolidarityServiceBookingList(w, r)
|
2024-04-24 08:22:23 +00:00
|
|
|
}
|
|
|
|
|
2024-06-07 09:51:01 +00:00
|
|
|
func (h *ApplicationHandler) SolidarityServiceBookingCreate(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
|
|
|
h.Renderer.SolidarityServiceBookingCreate(w, r )
|
2024-04-24 08:22:23 +00:00
|
|
|
}
|
|
|
|
|
2024-04-24 14:05:21 +00:00
|
|
|
func (h *ApplicationHandler) SilvermobiBookingUpdate(w http.ResponseWriter, r *http.Request) {
|
2024-04-24 08:22:23 +00:00
|
|
|
fmt.Println("SilverBookingU")
|
|
|
|
}
|
|
|
|
|
2024-04-24 14:05:21 +00:00
|
|
|
func (h *ApplicationHandler) SilvermobiBookingDelete(w http.ResponseWriter, r *http.Request) {
|
2024-04-24 08:22:23 +00:00
|
|
|
fmt.Println("SilverBookingD")
|
2024-04-24 14:05:21 +00:00
|
|
|
}
|
|
|
|
|