Re-recording 03_03
This commit is contained in:
22
Ch03/03_03_End/Website/Helpers/ProductHelpers.cs
Normal file
22
Ch03/03_03_End/Website/Helpers/ProductHelpers.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
using System.Web.Mvc.Html;
|
||||
using HPlusSports.Models;
|
||||
|
||||
namespace HPlusSports
|
||||
{
|
||||
public static class ProductHelpers
|
||||
{
|
||||
public static IHtmlString Rating(this System.Web.Mvc.HtmlHelper html, ProductRating rating)
|
||||
{
|
||||
if (rating == null || rating.ReviewCount == 0)
|
||||
{
|
||||
return new MvcHtmlString("<span><em>No Rating</em></span>");
|
||||
}
|
||||
return html.Partial("_Rating", rating);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user