public FeedModel AtomFeed(InputFeedTag tag)
 {
     _feedSetup.FeedType = FeedType.Atom;
     return ContentFeed(tag.Tag);
 }
 public FeedModel RssFeed(InputFeedTag tag)
 {
     _feedSetup.FeedType = FeedType.Rss;
     return ContentFeed(tag.Tag);
 }