public Boolean HasExceededOverdraft(Decimal withdrawal) { // 0 <= -50 if (GetBalance() - withdrawal <= _account.GetOverdraftLimit()) { return(true); } return(false); }