public async Task <TableResult> RetrieveEntity(string partitionKey, string rowKey)
        {
            IAzureTableStorageService tableStorageService = new AzureTableStorageService(SettingsManager.AzureWebJobsStorage(), SettingsManager.SentimentTableName());

            return(await tableStorageService.GetEntity(partitionKey, rowKey));
        }