public void TransferEntry(Topic source, Topic dest, Entry entry)
 {
     dest.AddEntry(entry);
     source.RemoveEntry(entry);
 }
 public void RemoveEntry(Topic topic, Entry entry)
 {
     topic.RemoveEntry(entry);
 }