From 52245ffb86b6d1585c4e4c82e6bf1b3c03c8846a Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 14 Apr 2017 14:22:51 -0400 Subject: Bugtracker work --- Project-Unite/Controllers/BugsController.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Project-Unite/Controllers/BugsController.cs (limited to 'Project-Unite/Controllers') diff --git a/Project-Unite/Controllers/BugsController.cs b/Project-Unite/Controllers/BugsController.cs new file mode 100644 index 0000000..5345239 --- /dev/null +++ b/Project-Unite/Controllers/BugsController.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; +using Project_Unite.Models; + +namespace Project_Unite.Controllers +{ + public class BugsController : Controller + { + // GET: Bugs + public ActionResult Index() + { + var db = new ApplicationDbContext(); + return View(db.BugTags); + } + } +} \ No newline at end of file -- cgit v1.2.3