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