Mise en place de la structure définitive du CRUD et modification de la page principale avec les datas

This commit is contained in:
2025-08-03 16:58:04 +02:00
parent 354c25ac06
commit fd080b2e64
1767 changed files with 147564 additions and 216 deletions

View File

@@ -0,0 +1,10 @@
using Microsoft.AspNetCore.Mvc;
namespace administration.Controllers
{
public class ApiBaseController : Controller
{
protected int? UserId => HttpContext.Session.GetInt32("UserId");
protected string? UserName => HttpContext.Session.GetString("UserName");
}
}