Removed HomeController

This commit is contained in:
Jovan Popovic
2017-02-04 23:04:25 +01:00
parent 81cd7166eb
commit 1cac131d9e
@@ -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();
}
}
}