예제 #1
0
 public OverdraftAccount(string num, Customer holder, double bal) : base(num, holder, bal)
 {
 }
예제 #2
0
        //
        //Constructor
        //

        public BankAccount(string num, Customer name, double balance)
        {
            acctNum = num;
            acctName = name;
            this.balance = balance;
        }
예제 #3
0
 public CurrentAccount(string number, Customer holder, double bal) : base(number, holder, bal)
 {
 }