Skip to content

Instantly share code, notes, and snippets.

@abdulateef
Last active October 6, 2024 13:28
Show Gist options
  • Save abdulateef/4a1e4331d64280ae2e79101fdf2868c9 to your computer and use it in GitHub Desktop.
Save abdulateef/4a1e4331d64280ae2e79101fdf2868c9 to your computer and use it in GitHub Desktop.
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