refactor: banking modules to nestjs

This commit is contained in:
Ahmed Bouhuolia
2025-01-06 11:45:58 +02:00
parent ba176394c8
commit 2bf58d9cb4
22 changed files with 172 additions and 60 deletions

View File

@@ -4,7 +4,7 @@ import { PaymentReceived } from '../models/PaymentReceived';
export interface IPaymentReceivedCreateDTO {
customerId: number;
paymentDate: Date;
paymentDate: Date | string;
amount: number;
exchangeRate: number;
referenceNo: string;