8 lines
209 B
C#
8 lines
209 B
C#
|
|
using Google.Cloud.BigQuery.V2;
|
||
|
|
|
||
|
|
namespace Migration.Services;
|
||
|
|
public interface IGoogleBigQueryClientFactory
|
||
|
|
{
|
||
|
|
BigQueryClient CreateClient();
|
||
|
|
BigQueryTable GetTable(string datasetId, string tableId);
|
||
|
|
}
|