Skip to content

Instantly share code, notes, and snippets.

@Mohammed-El-Nabulsi
Last active April 15, 2016 19:23
Show Gist options
  • Save Mohammed-El-Nabulsi/30638a05f937d72e07abbf64139c87e8 to your computer and use it in GitHub Desktop.
Save Mohammed-El-Nabulsi/30638a05f937d72e07abbf64139c87e8 to your computer and use it in GitHub Desktop.
using Microsoft.AspNet.Mvc;
namespace SampleApp.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
return View();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment