first commit
This commit is contained in:
22
RS_system/Controllers/ReportesController.cs
Normal file
22
RS_system/Controllers/ReportesController.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user