Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created June 1, 2021 14:37
Show Gist options
  • Save ssukhpinder/aff5f843fcdf5310947db30fbf2886ca to your computer and use it in GitHub Desktop.
Save ssukhpinder/aff5f843fcdf5310947db30fbf2886ca to your computer and use it in GitHub Desktop.
public class OrgYTransactions
{
public List<string> GetTransactionsList()
{
List<string> transactions = new List<string>();
transactions.Add("Debit 1");
transactions.Add("Debit 2");
transactions.Add("Debit 3");
return transactions;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment