30 lines
1.7 KiB
TypeScript
30 lines
1.7 KiB
TypeScript
import {
|
|
PAYMENTS_MEMBER_PAYMENT_REPOSITORY_TOKEN,
|
|
PAYMENTS_MEMBERSHIP_FEE_REPOSITORY_TOKEN,
|
|
PAYMENTS_PAYMENT_REPOSITORY_TOKEN,
|
|
PAYMENTS_PRIZE_REPOSITORY_TOKEN,
|
|
PAYMENTS_TRANSACTION_REPOSITORY_TOKEN,
|
|
PAYMENTS_WALLET_REPOSITORY_TOKEN,
|
|
} from '../../persistence/payments/PaymentsPersistenceTokens';
|
|
|
|
export const PAYMENT_REPOSITORY_TOKEN = PAYMENTS_PAYMENT_REPOSITORY_TOKEN;
|
|
export const MEMBERSHIP_FEE_REPOSITORY_TOKEN = PAYMENTS_MEMBERSHIP_FEE_REPOSITORY_TOKEN;
|
|
export const MEMBER_PAYMENT_REPOSITORY_TOKEN = PAYMENTS_MEMBER_PAYMENT_REPOSITORY_TOKEN;
|
|
export const PRIZE_REPOSITORY_TOKEN = PAYMENTS_PRIZE_REPOSITORY_TOKEN;
|
|
export const WALLET_REPOSITORY_TOKEN = PAYMENTS_WALLET_REPOSITORY_TOKEN;
|
|
export const TRANSACTION_REPOSITORY_TOKEN = PAYMENTS_TRANSACTION_REPOSITORY_TOKEN;
|
|
|
|
export const LOGGER_TOKEN = 'Logger';
|
|
|
|
export const GET_PAYMENTS_USE_CASE_TOKEN = 'GetPaymentsUseCase';
|
|
export const CREATE_PAYMENT_USE_CASE_TOKEN = 'CreatePaymentUseCase';
|
|
export const UPDATE_PAYMENT_STATUS_USE_CASE_TOKEN = 'UpdatePaymentStatusUseCase';
|
|
export const GET_MEMBERSHIP_FEES_USE_CASE_TOKEN = 'GetMembershipFeesUseCase';
|
|
export const UPSERT_MEMBERSHIP_FEE_USE_CASE_TOKEN = 'UpsertMembershipFeeUseCase';
|
|
export const UPDATE_MEMBER_PAYMENT_USE_CASE_TOKEN = 'UpdateMemberPaymentUseCase';
|
|
export const GET_PRIZES_USE_CASE_TOKEN = 'GetPrizesUseCase';
|
|
export const CREATE_PRIZE_USE_CASE_TOKEN = 'CreatePrizeUseCase';
|
|
export const AWARD_PRIZE_USE_CASE_TOKEN = 'AwardPrizeUseCase';
|
|
export const DELETE_PRIZE_USE_CASE_TOKEN = 'DeletePrizeUseCase';
|
|
export const GET_WALLET_USE_CASE_TOKEN = 'GetWalletUseCase';
|
|
export const PROCESS_WALLET_TRANSACTION_USE_CASE_TOKEN = 'ProcessWalletTransactionUseCase'; |