using Microsoft.AspNetCore.Mvc; using PlotLine.Services; namespace PlotLine.Controllers; public sealed class AcceptanceController(IAcceptanceService acceptance) : Controller { public async Task Phase1(int? projectId) { return View(await acceptance.GetPhase1ChecklistAsync(projectId)); } }