/// <summary>
 /// Copy the default dataset attributes to the Information Entities in the Information Models that define them.
 /// </summary>
 /// <param name="overWriteExistingValue">Boolean to indicate whether any already existing value should be overwritten or not.</param>
 /// <param name="tagSequence">The tag sequence.</param>
 /// <param name="vR">The VR.</param>
 /// <param name="parameters">The values.</param>
 public void AddDefaultAttribute(bool overWriteExistingValue, String tagSequence, VR vR, params Object[] parameters)
 {
     // add default attributes to the information models
     _patientRootInformationModel.AddDefaultAttributeToInformationModel(overWriteExistingValue, tagSequence, vR, parameters);
     _studyRootInformationModel.AddDefaultAttributeToInformationModel(overWriteExistingValue, tagSequence, vR, parameters);
     _patientStudyOnlyInformationModel.AddDefaultAttributeToInformationModel(overWriteExistingValue, tagSequence, vR, parameters);
 }