feat/BE/US-284/TASK-,299-Create API (GET ONE in tab Perhitungan Sapronak)

This commit is contained in:
ragilap
2025-12-08 11:28:32 +07:00
parent 9f239b1840
commit a8434a5246
9 changed files with 1258 additions and 7 deletions
+2 -1
View File
@@ -28,7 +28,8 @@ func (ClosingModule) RegisterRoutes(router fiber.Router, db *gorm.DB, validate *
approvalService := commonSvc.NewApprovalService(approvalRepo)
closingService := sClosing.NewClosingService(closingRepo, projectFlockRepo, marketingRepo, marketingDeliveryProductRepo, approvalService, validate)
sapronakService := sClosing.NewSapronakService(closingRepo, validate)
userService := sUser.NewUserService(userRepo, validate)
ClosingRoutes(router, userService, closingService)
ClosingRoutes(router, userService, closingService, sapronakService)
}