private bool WasWithdrawnThisMonth()
 {
     return(TransactionHistory.Any(x => !x.IsDeposit && x.Date.Month == DateTime.Today.Month));
 }