add hardcode tab daftar peserta

This commit is contained in:
2024-06-14 08:17:36 +07:00
parent e6b5435337
commit 17e1268cac
11 changed files with 367 additions and 248 deletions

View File

@@ -0,0 +1,13 @@
package mcu_corporate_services
import "cpone/db"
type TabDaftarPesertaServices struct {
TabDaftarPesertaStore db.AppStore
}
func NewTabDaftarPesertaServices(uStore db.AppStore) *TabDaftarPesertaServices {
return &TabDaftarPesertaServices{
TabDaftarPesertaStore: uStore,
}
}