public async Task ProcessAllAsync(Func <IEnumerable <IOperationToHashMatch>, Task> processAction)
        {
            Action <IEnumerable <IOperationToHashMatch> > function = async(items) =>
            {
                await processAction(items);
            };

            await _table.GetDataByChunksAsync(OperationToHashMatchEntity.GetPartitionKey(), function);
        }
        public async Task <IOperationToHashMatch> GetAsync(string operationId)
        {
            var match = await _table.GetDataAsync(OperationToHashMatchEntity.GetPartitionKey(), operationId);

            return(match);
        }