public ExecuteRenderer(IRendererErrorStrategy errorStrategy) : base(errorStrategy)
 {
     this.markupMinifierService = (ServiceLocator.ServiceProvider.GetService(typeof(IMarkupMinifierService)) as IMarkupMinifierService);
 }
 public ExecuteRenderer(IRendererErrorStrategy errorStrategy, IMarkupMinifierService markupMinifierService) : base(errorStrategy)
 {
     this.markupMinifierService = markupMinifierService;
 }
 public ExecuteRenderer() : base()
 {
     this.markupMinifierService = (ServiceLocator.ServiceProvider.GetService(typeof(IMarkupMinifierService)) as IMarkupMinifierService);
 }