public async Task <T> RetrieveAsync <T>(string tableName, string partitionKey, string rowKey)
     where T : class, ITableEntity
 {
     return(await _storageAccount.RetrieveAsync <T>(tableName, partitionKey, rowKey));
 }