コード例 #1
0
ファイル: RouteHelpers.cs プロジェクト: listentorick/ListenTo
 public string EditNewsItemUrl( NewsItemSummary newsItemSummary)
 {
     return UrlHelper.RouteUrl(Routes.NEWSITEM_EDIT, new { id = newsItemSummary.ID });
 }
コード例 #2
0
ファイル: RouteHelpers.cs プロジェクト: listentorick/ListenTo
 public string ViewNewsItemUrl(NewsItemSummary newsItemSummary)
 {
     return UrlHelper.RouteUrl(Routes.NEWSITEM_VIEW, new { id = newsItemSummary.ID });
 }
コード例 #3
0
ファイル: UrlHelper.cs プロジェクト: listentorick/ListenTo
 public static string EditNewsItemUrl(this HtmlHelper helper, NewsItemSummary newsItemSummary)
 {
     return IOCHelper.GetRouteHelpers().EditNewsItemUrl(newsItemSummary);
 }