From 790e31f03c7e2af8169e473bf6e19f27f0f67edb Mon Sep 17 00:00:00 2001 From: TypoMustakes Date: Sun, 10 Dec 2023 17:41:52 +0100 Subject: [PATCH] Fixed bug --- .../Controllers/WhoMaintainsServiceController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WD7UVN_HFT_2023241.Endpoint/Controllers/WhoMaintainsServiceController.cs b/WD7UVN_HFT_2023241.Endpoint/Controllers/WhoMaintainsServiceController.cs index 564d04b..8700352 100644 --- a/WD7UVN_HFT_2023241.Endpoint/Controllers/WhoMaintainsServiceController.cs +++ b/WD7UVN_HFT_2023241.Endpoint/Controllers/WhoMaintainsServiceController.cs @@ -17,9 +17,9 @@ namespace WD7UVN_HFT_2023241.Endpoint } [HttpGet()] - public IQueryable WhoUsesService([FromQuery] int id) + public IQueryable WhoUsesService([FromQuery] int id) { - return LogicServices.WhoUsesService(id); + return LogicServices.WhoMaintainsService(id); } } }