Beispiel #1
0
 public MediaServicesV2RestEncodeServiceTests()
 {
     _log                        = Mock.Of <IObjectLogger <MediaServicesV2RestEncodeService> >();
     _storageService             = Mock.Of <IStorageService>();
     _mediaServicesV2RestWrapper = Mock.Of <IMediaServicesV2RestWrapper>();
     _service                    = new MediaServicesV2RestEncodeService(
         _log,
         _storageService,
         _mediaServicesV2RestWrapper);
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MediaServicesV2RestEncodeService"/> class.
 /// </summary>
 /// <param name="log">log.</param>
 /// <param name="storageService">storageService.</param>
 /// <param name="mediaServicesV2RestWrapper">mediaServicesV2RestWrapper.</param>
 public MediaServicesV2RestEncodeService(IObjectLogger <MediaServicesV2RestEncodeService> log, IStorageService storageService, IMediaServicesV2RestWrapper mediaServicesV2RestWrapper)
 {
     _log                        = log;
     _storageService             = storageService;
     _mediaServicesV2RestWrapper = mediaServicesV2RestWrapper;
 }