public async Task <bool> Save(OrphanageDataModel.FinancialData.Account account)
        {
            try
            {
                await _apiClient.Accounts_PutAsync(account);

                return(true);
            }
            catch (ApiClientException apiEx)
            {
                return(_exceptionHandler.HandleApiSaveException(apiEx));
            }
        }