/// <summary> /// Initializes a new instance of the <see cref="DownloadMetadataStore"/> class. /// </summary> /// <param name="cloudTableClient">client to Azure Table</param> /// <param name="tableType">type of table</param> /// <param name="runId">uniquely identifies an execution of the OBA service</param> public DownloadMetadataStore(CloudTableClient cloudTableClient, TableNames.TableType tableType, string runId) : base(cloudTableClient, TableNames.TableName(tableType, runId)) { }
/// <summary> /// Initializes a new instance of the <see cref="RegionStore"/> class. /// </summary> /// <param name="cloudTableClient">client to Azure Table</param> /// <param name="tableType">type of table</param> /// <param name="runId">uniquely identifies an execution of the OBA service</param> public RegionStore(CloudTableClient cloudTableClient, TableNames.TableType tableType, string runId) : base(cloudTableClient, TableNames.TableName(tableType, runId)) { }