internal class BankingMenu
Console.WriteLine("Welcome to CorpoBank USA...\nWhat will it be, today?\n");
Console.WriteLine("\t1) Check Balance\n\t2) Deposit Money\n\t3) Withdraw Money\n\n\t8) Exit\n\nMake your choice before I make it for you...");
public void BalancePrompt(int userBalance)
Console.WriteLine("You currently have ${0} in your bank account.\n", userBalance);
public void DepositPrompt()
Console.WriteLine("How much money would you like to deposit?");
public void DepositConfirmation(int depositAmount)
Console.WriteLine("Your account has been credited ${0}.\n", depositAmount);
public void WithdrawPrompt()
Console.WriteLine("How much money would you like to withdraw?");
public void WithdrawConfirmation(int withdrawAmount)
Console.WriteLine("${0} has been removed from your account.\n", withdrawAmount);
public void InsufficientFunds()
Console.WriteLine("Woah there lil' buddy, that looks like more than you own... We don't do loans around here.\n");
public void InvalidInput(int errorCode)
Console.WriteLine("Not a valid choice..."); return;
public void UserLeaving()
Console.WriteLine("Thank you for your mon- err patronage!");