/// <summary>
 /// Updates the section passed in with the title from the Genius external policy section.
 /// </summary>
 /// <param name="xiapSection">The xiap section.</param>
 /// <param name="externalSection">The external section.</param>
 private void UpdateSection(Section xiapSection, IUWSection externalSection)
 {
     xiapSection.ExternalReference = externalSection.ExternalReference;
     SectionVersion sectionVersion = (SectionVersion)xiapSection.GetLatestVersion();
     if (sectionVersion != null)
     {
         sectionVersion.SectionTitle = externalSection.SectionTitle;
     }
 }