예제 #1
0
 static void Main(string[] args)
 {
     BasicBankAccount.BankAccount b = new BasicBankAccount.BankAccount();
     b.Deposit(-5);
     WallStreet.WallStreetAccount w = new WallStreet.WallStreetAccount();
     w.Deposit(150);
 }
예제 #2
0
 static void Main(string[] args) {
   BasicBankAccount.BankAccount b = new BasicBankAccount.BankAccount();
   b.Deposit(-5);
   WallStreet.WallStreetAccount w = new WallStreet.WallStreetAccount();
   w.Deposit(150);
 }