public void SetUp() { _banker = new Banker(); _myAccount = _banker.CreateAccount("Me"); }
private static void AccountInitialization(string name) { _banker = new Banker(); _myAccount = _banker.CreateAccount(name); _interpreter = new CommandInterpreter(_banker, _dialogConsole); }