Beispiel #1
0
		private void CopyFrom(ISopInstanceData other)
		{
 			StudyInstanceUid = other.StudyInstanceUid;
			SeriesInstanceUid = other.SeriesInstanceUid;
			SopInstanceUid = other.SopInstanceUid;
			SopClassUid = other.SopClassUid;
			InstanceNumber = other.InstanceNumber;
		}
Beispiel #2
0
 private void CopyFrom(ISopInstanceData other)
 {
     StudyInstanceUid  = other.StudyInstanceUid;
     SeriesInstanceUid = other.SeriesInstanceUid;
     SopInstanceUid    = other.SopInstanceUid;
     SopClassUid       = other.SopClassUid;
     InstanceNumber    = other.InstanceNumber;
 }
        private void CopyFrom(ISopInstanceData other)
        {
            if (other == null)
            {
                return;
            }

            StudyInstanceUid  = other.StudyInstanceUid;
            SeriesInstanceUid = other.SeriesInstanceUid;
            SopInstanceUid    = other.SopInstanceUid;
            SopClassUid       = other.SopClassUid;
            InstanceNumber    = other.InstanceNumber;
        }
Beispiel #4
0
 public ImageIdentifier(ISopInstanceData other)
 {
     CopyFrom(other);
 }
Beispiel #5
0
 public ImageIdentifier(ISopInstanceData other, IIdentifier identifier)
     : base(identifier)
 {
     CopyFrom(other);
 }
Beispiel #6
0
		public ImageIdentifier(ISopInstanceData other)
		{
			CopyFrom(other);
		}
Beispiel #7
0
		public ImageIdentifier(ISopInstanceData other, IIdentifier identifier)
			: base(identifier)
		{
			CopyFrom(other);
		}