예제 #1
0
파일: Urls.cs 프로젝트: skimur/skimur
 public static string Comment(this IUrlHelper urlHelper, string subName, Post post, Comment comment)
 {
     return urlHelper.RouteUrl("PostComment", new { subName, id = post.Id, title = post.Title.UrlFriendly(), commentId = comment.Id });
 }
예제 #2
0
파일: Urls.cs 프로젝트: skimur/skimur
 public static string Post(this IUrlHelper urlHelper, Sub sub, Post post)
 {
     return urlHelper.Post(sub.Name, post.Id, post.Title);
 }