Ejemplo n.º 1
0
 /// <summary>
 /// Updates the section detail passed in with the title from the external Genius policy section detail.
 /// </summary>
 /// <param name="xiapSectiondetail">The xiap sectiondetail.</param>
 /// <param name="externalSectionDetail">The external section detail.</param>
 private void UpdateSectionDetail(SectionDetail xiapSectiondetail, IUWSectionDetail externalSectionDetail)
 {
     xiapSectiondetail.ExternalReference = externalSectionDetail.ExternalReference;
     SectionDetailVersion secdetailVersion = (SectionDetailVersion)xiapSectiondetail.GetLatestVersion();
     if (secdetailVersion != null)
     {
         secdetailVersion.SectionDetailTitle = externalSectionDetail.SectionDetailTitle;
     }
 }