Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created June 1, 2021 14:42
Show Gist options
  • Save ssukhpinder/c11c1cea83b055c971e98632567a2962 to your computer and use it in GitHub Desktop.
Save ssukhpinder/c11c1cea83b055c971e98632567a2962 to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
ITransactions adapter = new TransAdapter();
foreach (var item in adapter.GetTransactions())
{
Console.WriteLine(item);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment