예제 #1
0
        public void Setup()
        {
            depositAccount = new DepositAccount(100, 16345, "Vasya", 2, 2.1);
            savingAccount1 = new SavingAccount(100, 12345, "Vasya", 3);
            savingAccount2 = new SavingAccount(100, 12340, "Vasya", 3);

            accounts          = new UserAccounts();
            accounts.UserName = "******";
            accounts.AddAccount(depositAccount);
            accounts.AddAccount(savingAccount1);
            accounts.AddAccount(savingAccount2);
        }