first commit

This commit is contained in:
2026-01-10 23:14:51 -06:00
commit 389715b4b4
503 changed files with 98244 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using Rs_system.Services;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace Rs_system.Controllers
{
[Authorize]
public class ReportesController : Controller
{
private readonly IReporteService _reporteService;
public ReportesController(IReporteService reporteService)
{
_reporteService = reporteService;
}
public IActionResult Index()
{
return View();
}
}
}