PlotDirector/PlotLine/Controllers/AcceptanceController.cs
Nick Beckley ca82bd973b Phase 1U
2026-06-01 19:44:12 +01:00

13 lines
326 B
C#

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