Update DI for ArchivesController

This commit is contained in:
Pat Hartl 2023-01-11 20:49:17 -06:00
parent c16f61befd
commit 21f8cbd992

View file

@ -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;
}