Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created May 24, 2021 13:15
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/1a999a263f76268c3ed37bed373300ae to your computer and use it in GitHub Desktop.
Save ssukhpinder/1a999a263f76268c3ed37bed373300ae to your computer and use it in GitHub Desktop.
public abstract class AccountTypeFactory
{
public abstract ISavingAccount SavingAccountFactory(string message);
public abstract ICurrentAccount CurrentAccountFactory(string message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment