/// <inheritdoc/>
        public void Synchronize(DicomDataset dataset, Patient patient, bool isNewPatient)
        {
            if (isNewPatient)
            {
                EnsureArg.IsNotNull(dataset, nameof(dataset));
                EnsureArg.IsNotNull(patient, nameof(patient));

                patient.BirthDateElement = dataset.GetDatePropertyIfNotDefaultValue(DicomTag.PatientBirthDate);
            }
        }