Created
December 24, 2018 07:23
-
-
Save fredyfx/f3cb26562710836ba858a5e402cb1f05 to your computer and use it in GitHub Desktop.
El controlador Home
This file contains hidden or 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 Microsoft.AspNetCore.Mvc; | |
| namespace AdvientoCSharpDic2018.Controllers | |
| { | |
| public class HomeController : Controller | |
| { | |
| // | |
| // GET: /Home/ | |
| public IActionResult Index() | |
| { | |
| return View(); | |
| } | |
| // | |
| // GET: /Home/About/ | |
| public IActionResult About() | |
| { | |
| return View(); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment