Last active
October 6, 2024 13:28
-
-
Save abdulateef/4a1e4331d64280ae2e79101fdf2868c9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class BankPaymentService_AntiSrp | |
{ | |
public BankPaymentService_AntiSrp() | |
{ | |
} | |
public void Transfer() | |
{ | |
GetBalance(); | |
AccountLookUp(); | |
//do transfer | |
} | |
public void Requery(string reference) | |
{ | |
//get transaction status | |
} | |
public void AccountLookUp(string accountNumber) | |
{ | |
//do account look up | |
} | |
public void GetBalance() | |
{ | |
//get balance | |
} | |
public void GenerateReport(object transactions) | |
{ | |
//download report | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment