public async Task <IEnumerable <ITransaction> > GetAsync(string hashBlock, int page, int count)
        {
            var partitionKey = hashBlock;

            return(await _tableStorage.TakePageAsync(partitionKey, page, count));
        }