public RetrieveTransactionResourceTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client = fixture.Client;
 }
示例#2
0
 public QueryTransactionTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client = fixture.Client;
 }
示例#3
0
 private static void SetupDicomWebClient(HttpClient httpClient)
 {
     s_client = new DicomWebClient(httpClient);
 }
示例#4
0
 public DeleteTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client           = fixture.GetDicomWebClient();
     _instancesManager = new DicomInstancesManager(_client);
 }
        public ChangeFeedRetrieveService(IDicomWebClient dicomWebClient)
        {
            EnsureArg.IsNotNull(dicomWebClient, nameof(dicomWebClient));

            _dicomWebClient = dicomWebClient;
        }
示例#6
0
 public Qido(IDicomWebClient dicomWebClient, ILogger <Qido> logger)
 {
     _dicomWebClient = dicomWebClient ?? throw new ArgumentNullException(nameof(dicomWebClient));
     _logger         = logger ?? throw new ArgumentNullException(nameof(logger));
 }
 public StoreTransactionTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     _client = fixture.Client;
     _recyclableMemoryStreamManager = fixture.RecyclableMemoryStreamManager;
 }
示例#8
0
 public StoreTransactionTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client = fixture.Client;
     _recyclableMemoryStreamManager = fixture.RecyclableMemoryStreamManager;
 }
示例#9
0
 public DicomRetrieveMetadataETagTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client = fixture.Client;
 }
示例#10
0
 public ChangeFeedTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client = fixture.Client;
 }