primer commit

This commit is contained in:
2024-08-30 03:19:36 -03:00
commit 2ce2a3ce01
81 changed files with 74938 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using Modelo;
namespace AlquilaFacil.Controllers;
public class HomeController : Controller
{
private readonly ILogger<HomeController> _logger;
public HomeController(ILogger<HomeController> logger)
{
_logger = logger;
}
public IActionResult Index()
{
return View();
}
public IActionResult Inquilino(){
return View();
}
public IActionResult Privacy()
{
return View();
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(
//new ErrorViewModel { RequestId = Activity.Class1 };
new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }
);
}
}