Exemplo n.º 1
0
 public void AddTopics(TopicList topicList)
 {
     if (topicList != null)
     {
         foreach (TopicItem newTopic in topicList)
         {
             AddTopic(newTopic);
         }
     }
 }
Exemplo n.º 2
0
 public CategoryItem(string id)
 {
     ID = id;
     ProviderMappingList = new ProviderMappingList();
     TopicList = new TopicList();
 }