Updated response ?

This commit is contained in:
Sambo Chea 2020-08-21 12:17:28 +07:00
parent 371c4fa5aa
commit 92ba0f5729

View File

@ -40,7 +40,7 @@ class AccountCommandController @Autowired constructor(
fun debitMoneyFromAccount(
@PathVariable(value = "accountId") accountId: String,
@RequestBody moneyDebitDTO: MoneyAmountDTO
): CompletableFuture<String?>? {
): CompletableFuture<String?> {
return this.accountCommandService.debitMoneyFromAccount(accountId, moneyDebitDTO)
}
}