public async Task <OrphanageDataModel.FinancialData.Account> Add(OrphanageDataModel.FinancialData.Account account)
        {
            try
            {
                account.UserId = Program.CurrentUser.Id;
                var retBail = (OrphanageDataModel.FinancialData.Account) await _apiClient.Accounts_PostAsync(account);
            }
            catch (ApiClientException apiEx)
            {
                return(await _exceptionHandler.HandleApiPostFunctions(getAccount, apiEx));
            }

            return(null);
        }