Add PendingLoanApplication controller and service
Introduced PendingLoanApplicationController and PendingLoanApplicationService classes as part of the client module. These provide the initial structure for handling pending loan application logic.Wasi/BS-2239
parent
b05d363cb2
commit
910e185430
@ -0,0 +1,14 @@
|
|||||||
|
package com.mfsys.aconnect.client.controller;
|
||||||
|
|
||||||
|
import com.mfsys.aconnect.client.service.PendingLoanApplicationService;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
public class PendingLoanApplicationController {
|
||||||
|
|
||||||
|
private final PendingLoanApplicationService pendingLoanApplicationService;
|
||||||
|
|
||||||
|
public PendingLoanApplicationController(PendingLoanApplicationService pendingLoanApplicationService) {
|
||||||
|
this.pendingLoanApplicationService = pendingLoanApplicationService;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
package com.mfsys.aconnect.client.service;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class PendingLoanApplicationService {
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue