static string GetPostUrlByEntryId(IPostRepository repo, IEnumerable<string> matches) { var match = matches.Single(); var entryId = Guid.Parse(match); var post = repo.PostByDasBlogEntryId(entryId); return FormatPostUrl(post); }