public AtomDisplayStory(string title, string summary, string updated, string link)
 {
     Title = new DisplayLine("TITLE", title);
     Summary = new DisplayLine("SUMMARY", summary);
     Updated = new DisplayLine("UPDATED", updated);
     Link = new DisplayLine("LINK", link);
 }
 public RssDisplayStory(string title, string description, string published, string link)
 {
     Title = new DisplayLine("TITLE", title);
     Description = new DisplayLine("DESCRIPTION", description);
     Published = new DisplayLine("PUBLISHED ON", published);
     Link = new DisplayLine("LINK", link);
 }