Example #1
0
        public async Task <double[]> GetAsync(string assetPairId)
        {
            var entity = await _tableStorage.GetDataAsync(FeedHoursHistoryEntity.GeneratePartition(),
                                                          FeedHoursHistoryEntity.GenerateRowKey(assetPairId));

            return(GetData(entity));
        }