Files
ProductiveAspNetMvc/Ch07/07_03_End/Website/Extensions/UrlHelperExtensions.cs
Jess Chadwick 20458e435e Exercise Files
2018-06-07 00:03:24 -04:00

21 lines
553 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using HPlusSports.Models;
namespace HPlusSports
{
public static class UrlHelperExtensions
{
public static string Product(this System.Web.Mvc.UrlHelper urlHelper, Product product)
{
return Product(urlHelper, product?.SKU);
}
public static string Product(this System.Web.Mvc.UrlHelper urlHelper, string sku)
{
return urlHelper.Action("Product", "Products", new { id = sku });
}
}
}