Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created May 24, 2021 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssukhpinder/183bf76ebea4620f622c63f04c72ae71 to your computer and use it in GitHub Desktop.
Save ssukhpinder/183bf76ebea4620f622c63f04c72ae71 to your computer and use it in GitHub Desktop.
public class CurrentAccount : ICurrentAccount
{
public CurrentAccount(string message)
{
Console.WriteLine(message);
}
}
public class SavingsAccount : ISavingAccount
{
public SavingsAccount( string message)
{
Console.WriteLine(message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment