Esempio n. 1
0
        /// <inheritdoc />
        public async Task <string> RemoveUser(string id)
        {
            if (string.IsNullOrWhiteSpace(id))
            {
                throw new ArgumentNullException("Id cannot be null or white space", nameof(id));
            }

            var entity = await _client.RemoveEntity <UserTableEntity>(id, string.Empty).ConfigureAwait(false);

            return(entity?.Handle);
        }