public ActionResult Rss()
 {
     return(new FeedResult(FeedService.Get(), FeedResult.Type.Rss));
 }
 public ActionResult Atom()
 {
     return(new FeedResult(FeedService.Get(), FeedResult.Type.Atom));
 }