add tab view kepesertaan

This commit is contained in:
2024-06-26 11:45:06 +07:00
parent 54de2a0ece
commit 91a157b023
6 changed files with 87 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
package mcu_corporate_services
import "cpone/db"
type TabKepersertaanServices struct {
TabKepersertaanServiceStore db.AppStore
}
func NewTabKepersertaanService(store db.AppStore) *TabKepersertaanServices {
return &TabKepersertaanServices{
TabKepersertaanServiceStore: store,
}
}