From 1cac131d9e574afa18c5c30d8fef279f9ebb991c Mon Sep 17 00:00:00 2001 From: Jovan Popovic Date: Sat, 4 Feb 2017 23:04:25 +0100 Subject: [PATCH] Removed HomeController --- .../Controllers/HomeController.cs | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 samples/demos/BelgradeProductCatalogDemo/Controllers/HomeController.cs diff --git a/samples/demos/BelgradeProductCatalogDemo/Controllers/HomeController.cs b/samples/demos/BelgradeProductCatalogDemo/Controllers/HomeController.cs deleted file mode 100644 index 52e0bd70..00000000 --- a/samples/demos/BelgradeProductCatalogDemo/Controllers/HomeController.cs +++ /dev/null @@ -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(); - } - } -} \ No newline at end of file