From fb644cc2d3296f350f6a4c2628f06c496d3e030c Mon Sep 17 00:00:00 2001 From: neeraj kumar Date: Fri, 26 Jun 2020 22:53:17 -0400 Subject: [PATCH 1/3] NK changes to other collaborators --- MVC_Start/Controllers/HomeController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVC_Start/Controllers/HomeController.cs b/MVC_Start/Controllers/HomeController.cs index 91d8b2a..24e9455 100644 --- a/MVC_Start/Controllers/HomeController.cs +++ b/MVC_Start/Controllers/HomeController.cs @@ -9,7 +9,7 @@ namespace MVC_Start.Controllers { public class HomeController : Controller { - public IActionResult Index() + public IActionResult Index(int id) { return View(); } From 34bc86c60c84c10e86cf5dfa071b84171bfffb3a Mon Sep 17 00:00:00 2001 From: Alex Seufert Date: Fri, 26 Jun 2020 19:58:29 -0400 Subject: [PATCH 2/3] alexs commit --- MVC_Start/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MVC_Start/Program.cs b/MVC_Start/Program.cs index 4d1db8e..af0d571 100644 --- a/MVC_Start/Program.cs +++ b/MVC_Start/Program.cs @@ -14,6 +14,7 @@ public class Program { public static void Main(string[] args) { + // alex's comment BuildWebHost(args).Run(); } From d741cc59b7cc966dc8dc1f7f3e30744224e997a9 Mon Sep 17 00:00:00 2001 From: Deborah Gause Date: Sat, 27 Jun 2020 09:18:21 -0400 Subject: [PATCH 3/3] Comment Added --- MVC_Start/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MVC_Start/Program.cs b/MVC_Start/Program.cs index af0d571..5917d43 100644 --- a/MVC_Start/Program.cs +++ b/MVC_Start/Program.cs @@ -16,6 +16,7 @@ public static void Main(string[] args) { // alex's comment BuildWebHost(args).Run(); + // Deb's Comment } public static IWebHost BuildWebHost(string[] args) =>