a ver si no me olcideo de commitear otra vez

This commit is contained in:
2024-09-03 23:47:16 -03:00
parent 5d3636ae22
commit b130f55933
25 changed files with 820 additions and 108 deletions
+5 -7
View File
@@ -1,6 +1,5 @@
using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using Modelo;
namespace AlquilaFacil.Controllers;
@@ -21,17 +20,16 @@ public class HomeController : Controller
public IActionResult Inquilino(){
return View();
}
public IActionResult Privacy()
{
return View();
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
public IActionResult InquilinoForm(long? id = 0)
{
return View(
//new ErrorViewModel { RequestId = Activity.Class1 };
new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }
);
return View();
}
}