summaryrefslogtreecommitdiff
path: root/Controllers/HomeController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Controllers/HomeController.cs')
-rw-r--r--Controllers/HomeController.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Controllers/HomeController.cs b/Controllers/HomeController.cs
deleted file mode 100644
index 028322c..0000000
--- a/Controllers/HomeController.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using Microsoft.AspNetCore.Mvc;
-using Microsoft.EntityFrameworkCore;
-using MyDarling.Models;
-
-namespace MyDarling.Controllers
-{
- public class HomeController : Controller
- {
- private DataContext context;
- public HomeController(DataContext context)
- {
- this.context = context;
- }
- public IActionResult Index()
- {
- return View(context.UnderwearBundles.Include(b => b.Figures));
- }
- }
-} \ No newline at end of file