Skip to content

Instantly share code, notes, and snippets.

View epishilpa's full-sized avatar

Shilpa Joshi epishilpa

  • Episerver
View GitHub Profile
public class ProductPageController : PageControllerBase<ProductPage>
{
private readonly IRatingService ratingService;
private readonly IRatingStatisticsService ratingStatisticsService;
public ProductPageController()
{
ratingService = EPiServer.ServiceLocation.ServiceLocator.Current.GetInstance<IRatingService>();
ratingStatisticsService = EPiServer.ServiceLocation.ServiceLocator.Current.GetInstance<IRatingStatisticsService>();
}