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
+11
View File
@@ -0,0 +1,11 @@
from app.models import RepaymentsData
class RepaymentService:
@classmethod
def add_repayment_data(cls,data):
"""
Add a new repayment data entry.
"""
return RepaymentsData.add_repayment_data(data)