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)