Files
JavaScriptServices/templates/KnockoutSpa/Controllers/HomeController.cs
2016-03-08 12:16:22 +00:00

22 lines
398 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Mvc;
namespace WebApplicationBasic.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
return View();
}
public IActionResult Error()
{
return View();
}
}
}