FeedDataverseBQ/AzureFunction/Services/IGoogleBigQueryClientFactor...

8 lines
209 B
C#
Raw Normal View History

2025-03-24 16:14:46 -04:00
using Google.Cloud.BigQuery.V2;
namespace Migration.Services;
public interface IGoogleBigQueryClientFactory
{
BigQueryClient CreateClient();
BigQueryTable GetTable(string datasetId, string tableId);
}