FeedDataverseBQ/Migration/Services/IGoogleBigQueryClientFactor...

8 lines
237 B
C#

using Google.Cloud.BigQuery.V2;
namespace Migration.Services;
public interface IGoogleBigQueryClientFactory
{
BigQueryClient CreateClient(IConfiguration configuration);
BigQueryTable GetTable(string datasetId, string tableId);
}