public Savings2() // constructor to defin and instance // not needed if Line 9 is done
 {
     account = new account();
 }
 public bool Transfer(decimal amount, account toAccount)
 {
     return(account.Transfer(amount, toAccount));
 }