Last active
December 29, 2015 12:15
-
-
Save sshibani/59553e4293793f2d220d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class PageController : TridionControllerBase | |
{ | |
public PageController(IPageFactory pageFactor, | |
IComponentPresentationFactory componentPresentationFactory, | |
ILogger logger, | |
IDD4TConfiguration configuration) : | |
base(pageFactor, componentPresentationFactory, logger, configuration) | |
{ | |
public override ActionResult Page(string url) | |
{ | |
return base.Page(url); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment