Exemplo n.º 1
0
 public OverdraftAccount(string num, Customer holder, double bal) : base(num, holder, bal)
 {
 }
Exemplo n.º 2
0
        //
        //Constructor
        //

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