mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
Removed HomeController
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using System;
|
||||
|
||||
namespace ProductCatalog.Controllers
|
||||
{
|
||||
public class HomeController : Controller
|
||||
{
|
||||
[HttpGet]
|
||||
public IActionResult Index()
|
||||
{
|
||||
ViewData["page"] = "index";
|
||||
return View();
|
||||
}
|
||||
|
||||
public IActionResult Report1()
|
||||
{
|
||||
ViewData["page"] = "report1";
|
||||
return View();
|
||||
}
|
||||
|
||||
public IActionResult Report2()
|
||||
{
|
||||
ViewData["page"] = "report2";
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user