public double GetBalance() { if (myAccount == null) { myAccount = new Account(); } return(myAccount.GetBalance()); }
public double GetBalance() { if (myAccount == null) { myAccount = new Account(); } return myAccount.GetBalance(); }
public StatementInformer(IBalanceInformation account) { myAccount = account; }