Files
mixtape/Finch/Mvc/FinchController.cs
T
2026-04-07 14:23:29 +02:00

10 lines
304 B
C#

using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.DependencyInjection;
namespace Finch.Mvc;
public abstract class FinchController : Controller
{
IFinchContext _context;
public IFinchContext Context => _context ?? (_context = HttpContext?.RequestServices?.GetService<IFinchContext>());
}