MVC-databaskonstruktion

Log | Files | Refs | README

commit 56861b45c2df8764811ee770bf85c0df6727b72e
parent 0402f9757321fcab058d823650edbc11a43cffcf
Author: William Lindholm <a22willi@student.his.se>
Date:   Mon,  9 Oct 2023 09:49:40 +0200

Added AgentController

Diffstat:
AMVC-databaskonstruktion/Controllers/AgentController.cs | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/MVC-databaskonstruktion/Controllers/AgentController.cs b/MVC-databaskonstruktion/Controllers/AgentController.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Mvc; + +namespace MVC_databaskonstruktion.Controllers +{ + public class AgentController : Controller + { + public IActionResult Index() + { + return View(); + } + } +}