public void WithdrawFromAccountUI(IAccount account) { view.AskForWithdrawAmmount(); if (decimal.TryParse(Console.ReadLine(), out decimal ammount)) { WithdrawFromAccount(account, ammount); } else { view.DisplayInvalidMoneyFormat(); } }