コード例 #1
0
 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
ファイル: Qido.cs プロジェクト: bbatjargal/dicom-server
 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);
 }
コード例 #5
0
        public ChangeFeedRetrieveService(IDicomWebClient dicomWebClient)
        {
            EnsureArg.IsNotNull(dicomWebClient, nameof(dicomWebClient));

            _dicomWebClient = dicomWebClient;
        }
コード例 #6
0
ファイル: Qido.cs プロジェクト: igobypenn/clara-dicom-adapter
 public Qido(IDicomWebClient dicomWebClient, ILogger <Qido> logger)
 {
     _dicomWebClient = dicomWebClient ?? throw new ArgumentNullException(nameof(dicomWebClient));
     _logger         = logger ?? throw new ArgumentNullException(nameof(logger));
 }
コード例 #7
0
 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;
 }