Пример #1
0
        public async Task <bool> Delete(int accountId, bool ForceDelete)
        {
            var account = _SourceAccounts.FirstOrDefault(c => c.Id == accountId);

            if (account == null)
            {
                return(false);
            }
            await _apiClient.Accounts_DeleteAsync(accountId);

            return(true);
        }