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