Skip to content

Instantly share code, notes, and snippets.

@fredyfx
Created December 24, 2018 07:23
Show Gist options
  • Select an option

  • Save fredyfx/f3cb26562710836ba858a5e402cb1f05 to your computer and use it in GitHub Desktop.

Select an option

Save fredyfx/f3cb26562710836ba858a5e402cb1f05 to your computer and use it in GitHub Desktop.
El controlador Home
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