Пример #1
0
        public KeyImageDisplaySetDescriptor(IStudyIdentifier sourceStudy)
        {
            Platform.CheckForNullReference(sourceStudy, "sourceStudy");

            _study = sourceStudy;

            _suffix = String.Format(SR.SuffixFormatKeyImageDisplaySet);
        }
Пример #2
0
        public ModalityDisplaySetDescriptor(IStudyIdentifier sourceStudy, string modality, IPresentationImageFactory presentationImageFactory)
            : base(null, presentationImageFactory)
        {
            Platform.CheckForNullReference(sourceStudy, "sourceStudy");
            Platform.CheckForEmptyString(modality, "modality");

            SourceStudy = sourceStudy;
            Modality    = modality;
        }
Пример #3
0
        public ImageViewerMoveScu(string localAETitle, IDicomServiceNode remoteAEInfo, IPatientRootData patient, IStudyIdentifier studiesToRetrieve)
            : base(localAETitle, remoteAEInfo.AETitle, remoteAEInfo.ScpParameters.HostName, remoteAEInfo.ScpParameters.Port, localAETitle)
        {
            Platform.CheckForEmptyString(localAETitle, "localAETitle");
            Platform.CheckForEmptyString(remoteAEInfo.AETitle, "AETitle");
            Platform.CheckForEmptyString(remoteAEInfo.ScpParameters.HostName, "HostName");
            Platform.CheckForNullReference(studiesToRetrieve, "studiesToRetrieve");

            _studyToRetrieve         = studiesToRetrieve;
            _patientToRetrieve       = patient;
            _errorDescriptionDetails = string.Empty;
        }
Пример #4
0
        public ImageViewerMoveScu(string localAETitle, IDicomServiceNode remoteAEInfo, IPatientRootData patient, IStudyIdentifier studiesToRetrieve)
            : base(localAETitle, remoteAEInfo.AETitle, remoteAEInfo.ScpParameters.HostName, remoteAEInfo.ScpParameters.Port, localAETitle)
        {
            Platform.CheckForEmptyString(localAETitle, "localAETitle");
            Platform.CheckForEmptyString(remoteAEInfo.AETitle, "AETitle");
            Platform.CheckForEmptyString(remoteAEInfo.ScpParameters.HostName, "HostName");
            Platform.CheckForNullReference(studiesToRetrieve, "studiesToRetrieve");

            _studyToRetrieve = studiesToRetrieve;
            _patientToRetrieve = patient;
            _errorDescriptionDetails = string.Empty;
        }
Пример #5
0
 public ModalityDisplaySetDescriptor(IStudyIdentifier sourceStudy, string modality, IPresentationImageFactory presentationImageFactory)
     : base(null, presentationImageFactory)
 {
     Platform.CheckForNullReference(sourceStudy, "sourceStudy");
     Platform.CheckForEmptyString(modality, "modality");
     
     SourceStudy = sourceStudy;
     Modality = modality;
 }
Пример #6
0
        public KeyImageDisplaySetDescriptor(IStudyIdentifier sourceStudy)
        {
            Platform.CheckForNullReference(sourceStudy, "sourceStudy");

            _study = sourceStudy;

            _suffix = String.Format(SR.SuffixFormatKeyImageDisplaySet);
        }
 public StudyRootStudyIdentifier(IPatientData patientData, IStudyIdentifier identifier)
     : base(identifier)
 {
     CopyFrom(patientData);
 }
Пример #8
0
 public ImageViewerMoveScu(string localAETitle, IDicomServiceNode remoteAEInfo, IPatientRootData patient, IStudyIdentifier studyInformation, IEnumerable <string> seriesInstanceUids)
     : this(localAETitle, remoteAEInfo, patient, studyInformation)
 {
     _seriesInstanceUids = seriesInstanceUids;
 }
Пример #9
0
 public PatientRootStudyIdentifier(IStudyIdentifier other)
     : base(other)
 {
 }
Пример #10
0
 public ImageViewerMoveScu(string localAETitle, IDicomServiceNode remoteAEInfo, IPatientRootData patient, IStudyIdentifier studyInformation, IEnumerable<string> seriesInstanceUids)
     : this(localAETitle, remoteAEInfo, patient, studyInformation)
 {
     _seriesInstanceUids = seriesInstanceUids;
 }
Пример #11
0
		public StudyIdentifier(IStudyIdentifier other)
			: base(other)
		{
			CopyFrom(other);
		}
Пример #12
0
 public StudyIdentifier(IStudyIdentifier other)
     : base(other)
 {
     CopyFrom(other);
 }
		public PatientRootStudyIdentifier(IStudyIdentifier other)
			: base(other)
		{
		}
 public StudyRootStudyIdentifier(IPatientData patientData, IStudyIdentifier identifier)
     : base(identifier)
 {
     CopyFrom(patientData);
 }