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