Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created May 24, 2021 06:36
Show Gist options
  • Save ssukhpinder/759a61a24d8b63d75892dc41340826a4 to your computer and use it in GitHub Desktop.
Save ssukhpinder/759a61a24d8b63d75892dc41340826a4 to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
IAccountFactory accountFactory = new AccountFactory();
var savingAccount = accountFactory.GetAccoutType("SAVINGS");
Console.WriteLine("Saving account balance: " + savingAccount.Balance);
var currentAccount = accountFactory.GetAccoutType("CURRENT");
Console.WriteLine("Current account balance: " + currentAccount.Balance);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment