/// <summary>
 /// Initializes a new instance of the <see cref="MediaServicesV2EncodeOperations"/> class.
 /// </summary>
 /// <param name="log">log.</param>
 /// <param name="storageService">storageService.</param>
 /// <param name="mediaServicesV2RestSharp">mediaServicesV2RestSharp.</param>
 public MediaServicesV2EncodeOperations(
     ILogger <MediaServicesV2EncodeOperations> log,
     IAzureStorageOperations storageService,
     IMediaServicesV2RestSharp mediaServicesV2RestSharp)
 {
     _log                      = log;
     _storageService           = storageService;
     _mediaServicesV2RestSharp = mediaServicesV2RestSharp;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="UploadAndAnalyze"/> class.
 /// </summary>
 /// <param name="mediaInfoReportService">Injected <see cref="IMediaInfoReportService"/>.</param>
 /// <param name="azureStorageOperations">Injected <see cref="IAzureStorageOperations"/>.</param>
 /// <param name="logger">Injected <see cref="ILogger"/>.</param>
 public UploadAndAnalyze(
     IMediaInfoReportService mediaInfoReportService,
     IAzureStorageOperations azureStorageOperations,
     ILogger <UploadAndAnalyze> logger)
 {
     _mediaInfoReportService = mediaInfoReportService;
     _azureStorageOperations = azureStorageOperations;
     _logger = logger;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="MediaInfoReportService"/> class.
 /// </summary>
 /// <param name="mediaInfoProvider">Injected <see cref="IMediaInfoProvider"/>.</param>
 /// <param name="azureStorageOperations">Injected <see cref="IAzureStorageOperations"/>.</param>
 /// <param name="azureStorageReadByteRangeOperations">Injected <see cref="IAzureStorageReadByteRangeOperations"/>.</param>
 /// <param name="logger">Injected <see cref="ILogger"/>.</param>
 public MediaInfoReportService(
     IMediaInfoProvider mediaInfoProvider,
     IAzureStorageOperations azureStorageOperations,
     IAzureStorageReadByteRangeOperations azureStorageReadByteRangeOperations,
     ILogger <MediaInfoReportService> logger)
 {
     _mediaInfoProvider      = mediaInfoProvider;
     _azureStorageOperations = azureStorageOperations;
     _azureStorageReadByteRangeOperations = azureStorageReadByteRangeOperations;
     _logger = logger;
 }