private static bool IsUidAttributeToRemap(DicomAttribute attribute)
 {
     return(UidsToRemap.Contains(attribute.Tag.TagValue));
 }
 private static bool IsUidAttributeToRemap(DicomElement element)
 {
     return(UidsToRemap.Contains(element.Tag.TagValue));
 }