예제 #1
0
		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);
		}