Class MovementCoreService
java.lang.Object
es.kukenan.smartfi.microservice.smartficore.service.MovementCoreService
Service to reply Core invocations.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate CardMovementRepositoryCard Movements repository.private WalletMovementRepositoryWallet Movements repository.private WalletProductRepositoryWallet repository. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionItemsEntity<es.kukenan.smartfi.microservice.backoffice.dtos.core.movement.CardMovement>getCardMovements(String userId, String cardId, String dateFrom, String dateTo, String paginationKey) Retrieve user wallet movements.ItemsEntity<es.kukenan.smartfi.microservice.backoffice.dtos.core.movement.WalletMovement>getWalletMovement(String userId, String walletId, String currencyType, String dateFrom, String dateTo, String paginationKey) Retrieve user wallet movements.
-
Field Details
-
walletProductRepository
Wallet repository. -
walletMovementRepository
Wallet Movements repository. -
cardMovementRepository
Card Movements repository.
-
-
Constructor Details
-
MovementCoreService
public MovementCoreService()
-
-
Method Details
-
getWalletMovement
public ItemsEntity<es.kukenan.smartfi.microservice.backoffice.dtos.core.movement.WalletMovement> getWalletMovement(String userId, String walletId, String currencyType, String dateFrom, String dateTo, String paginationKey) Retrieve user wallet movements.- Parameters:
userId- movements data params.walletId- wallet identifiercurrencyType- currencydateFrom- date fromdateTo- date topaginationKey- information.- Returns:
- the movements wallet list.
-
getCardMovements
public ItemsEntity<es.kukenan.smartfi.microservice.backoffice.dtos.core.movement.CardMovement> getCardMovements(String userId, String cardId, String dateFrom, String dateTo, String paginationKey) Retrieve user wallet movements.- Parameters:
userId- movements data params.cardId- card identifierdateFrom- date fromdateTo- date topaginationKey- information.- Returns:
- the movements card list.
-