added repayment data to db

This commit was merged in pull request #22.
This commit is contained in:
Chinenye Nmoh
2025-06-10 18:22:50 +01:00
parent 217b63efcf
commit fc19f39378
4 changed files with 65 additions and 2 deletions
+2 -1
View File
@@ -4,5 +4,6 @@ from .loan import Loan
from .loan_charge import LoanCharge
from .customer import Customer
from .account import Account
from .repayments_data import RepaymentsData
__all__ = ['Transaction', 'Repayment', 'Loan', 'LoanCharge', 'Customer', 'Account']
__all__ = ['Transaction', 'Repayment', 'Loan', 'LoanCharge', 'Customer', 'Account', 'RepaymentsData']