Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add StudentController
  • Loading branch information
kajan committed Feb 14, 2021
1 parent 6c96d16 commit 94a8f57
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions AspNetCoreVueMpa.Web/Controllers/StudentController.cs
@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;

namespace AspNetCoreVueMpa.Web.Controllers
{
public class StudentController : Controller
{
public IActionResult Index()
{
return View();
}
}
}

0 comments on commit 94a8f57

Please sign in to comment.