void WithdrawlOrder::Execute(BSTree &accounts)
{
	Account* temp;
	if (accounts.Retrieve(accountID, temp))
	{
		temp->Withdraw(amount, fundNumber);
	}
	else
	{
		cerr << "ERROR: Account " << accountID << " not found. Withdrawl refused." << endl;
	}
}