From 21f8cbd992d8dffbae92c8d9b3d6aeb5a5a89252 Mon Sep 17 00:00:00 2001 From: Pat Hartl Date: Wed, 11 Jan 2023 20:49:17 -0600 Subject: [PATCH] Update DI for ArchivesController --- LANCommander/Controllers/ArchivesController.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/LANCommander/Controllers/ArchivesController.cs b/LANCommander/Controllers/ArchivesController.cs index 70620c6..ad1eca0 100644 --- a/LANCommander/Controllers/ArchivesController.cs +++ b/LANCommander/Controllers/ArchivesController.cs @@ -14,13 +14,11 @@ namespace LANCommander.Controllers [Authorize(Roles = "Administrator")] public class ArchivesController : Controller { - private readonly DatabaseContext Context; private readonly GameService GameService; private readonly ArchiveService ArchiveService; - public ArchivesController(DatabaseContext context, GameService gameService, ArchiveService archiveService) + public ArchivesController(GameService gameService, ArchiveService archiveService) { - Context = context; GameService = gameService; ArchiveService = archiveService; }