/// <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;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GetAmsRestApiEndpoint"/> class.
 /// </summary>
 /// <param name="mediaServicesV2RestSharp">The instance of <see cref="IMediaServicesV2RestSharp"/>.</param>
 public GetAmsRestApiEndpoint(IMediaServicesV2RestSharp mediaServicesV2RestSharp)
 {
     _mediaServicesV2RestSharp = mediaServicesV2RestSharp;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ConsoleService"/> class.
 /// </summary>
 /// <param name="mediaServicesV2Encoder">Encoder object.</param>
 /// <param name="mediaServicesV2RestSharp">AMSv2 rest shap object.</param>
 /// <param name="logger">Logger.</param>
 public ConsoleService(IMediaServicesV2Encoder mediaServicesV2Encoder, IMediaServicesV2RestSharp mediaServicesV2RestSharp, ILogger <ConsoleService> logger)
 {
     _mediaServicesV2Encoder   = mediaServicesV2Encoder;
     _mediaServicesV2RestSharp = mediaServicesV2RestSharp;
     _logger = logger;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="GetMediaEncoderStandard"/> class.
 /// </summary>
 /// <param name="mediaServicesV2RestSharp">The instance of <see cref="IMediaServicesV2RestSharp"/>.</param>
 public GetMediaEncoderStandard(IMediaServicesV2RestSharp mediaServicesV2RestSharp)
 {
     _mediaServicesV2RestSharp = mediaServicesV2RestSharp;
 }