Manos.Mvc.ViewService.ViewService C# (CSharp) Method

ViewService() public method

public ViewService ( MvcApp app ) : System
app MvcApp
return System
        public ViewService(MvcApp app)
        {
            Application = app;

            // Register standard view paths
            RegisterViewPath("/Views/{controller}/{view}.cshtml");
            RegisterViewPath("/Views/Shared/{view}.cshtml");

            // Built-in razor view engine
            RegisterViewEngine(new RazorViewEngine(this));
        }