tab view mcu bagian daftar peserta

This commit is contained in:
2024-06-13 20:54:28 +07:00
parent 7f3e75a8e3
commit b508eb68da
4 changed files with 306 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package dev_services
import "cpone/db"
type McuDaftarPesertaServices struct {
McuDaftarPesertaStore db.AppStore
}
func NewMcuDaftarPesertaServices(uStore db.AppStore) *McuDaftarPesertaServices {
return &McuDaftarPesertaServices{
McuDaftarPesertaStore: uStore,
}
}