public HyperlinkItem()
 {
     this.id         = Guid.NewGuid().ToString();
     this.keyPhrases = new Keyphrases(string.Empty);
 }
 public void AddKeyPhrases(string delimitedKeyPhraseText)
 {
     XmlHyperlinks_Test.Keyphrases newKeyPhrases = new Keyphrases(delimitedKeyPhraseText);
     keyPhrases.AddKeyPhrases(newKeyPhrases.KeyPhrases);
 }
 public HyperlinkItem(string id, string keyPhrases)
 {
     this.id         = id;
     this.keyPhrases = new Keyphrases(keyPhrases);
 }