Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created May 24, 2021 13:36
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/e7464dadb970cfd779ce05534b3b5ba8 to your computer and use it in GitHub Desktop.
Save ssukhpinder/e7464dadb970cfd779ce05534b3b5ba8 to your computer and use it in GitHub Desktop.
public class SavingsAccount : AccoutType
{
public SavingsAccount()
{
Balance = "10000 Rs";
}
}
public class CurrentAccount : AccoutType
{
public CurrentAccount()
{
Balance = "20000 Rs";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment