Exemple #1
0
        public void AddMutualFundAccount()
        {
            this.MutualFundIndex++;
            IndividualAccount Acct1 = new IndividualAccount();

            Acct1.AccountBallance = 0;
            Acct1.AccountNumber   = this.MutualFundIndex;
            this.MutualFundList.Add(Acct1);
        }
Exemple #2
0
        public void AddSavingsAccount()
        {
            this.SavingsIndex++;
            IndividualAccount Acct1 = new IndividualAccount();

            Acct1.AccountBallance = 0;
            Acct1.AccountNumber   = this.SavingsIndex;
            this.SavingsList.Add(Acct1);
        }
Exemple #3
0
        public void AddCheckingAccount()
        {
            this.CheckingIndex++;
            IndividualAccount Acct1 = new IndividualAccount();

            Acct1.AccountBallance = 0;
            Acct1.AccountNumber   = this.CheckingIndex;
            this.CheckingList.Add(Acct1);
        }