Last active
June 14, 2018 23:05
-
-
Save victorighalo/9591317aa336ab9e4b7cf47483aee8bb 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
using System.Web.Mvc; | |
namespace WyzWeb.Public.App_Code.WyzWebControllers | |
{ | |
public class BaseController : Controller | |
{ | |
public ActionResult Name() | |
{ | |
return Content("Victor - Misterwyz"); | |
} | |
[Route("Profile")] | |
public new ActionResult Profile() | |
{ | |
return Content("I Love Software Development and Umbraco"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment