Rename ES2015Transpilation sample to NodeServicesExamples (because will be adding some more examples here)

This commit is contained in:
SteveSandersonMS
2016-06-07 14:20:43 +01:00
parent c8859abeb7
commit facc2c6d08
18 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace NodeServicesExamples.Controllers
{
public class HomeController : Controller
{
public IActionResult Index(int pageIndex)
{
return View();
}
public IActionResult Error()
{
return View("~/Views/Shared/Error.cshtml");
}
}
}