Files
digifi-EventManager/app/services/repayment.py
T

10 lines
274 B
Python

from app.models import Repayment
class RepaymentService:
@staticmethod
def get_repayment_by_transaction_id(transaction_id):
"""
Get the repayment by transaction ID
"""
return Repayment.get_repayment_by_transaction_id(transaction_id)