Skip to content

Instantly share code, notes, and snippets.

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 tarikguney/789278446392d237ad4607a45e7020a0 to your computer and use it in GitHub Desktop.
Save tarikguney/789278446392d237ad4607a45e7020a0 to your computer and use it in GitHub Desktop.
Account Creator Used in Main Method For Medium
public class Program{
public static void Main(string[] args){
AccountCreator accountCreator = new AccountCreator(new DatabaseAccountChecker());
var accountInfo = GetAccountInfoFromSomewhere();
var result = accountCreator.TryCreateAccount(accountInfo);
Console.WriteLine("Account Creation was succesfull? " + result);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment