moved aspnet logic to a diferent folder

This commit is contained in:
2024-09-01 19:08:52 -03:00
parent 30db290c5f
commit 5d3636ae22
80 changed files with 19 additions and 3 deletions

1
.gitignore vendored
View File

@@ -5,3 +5,4 @@
/Modelo/obj/
/Entidades/bin/
/Entidades/obj/
/Aspnet/obj/

View File

@@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Entidades", "Entidades\Enti
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Modelo", "Modelo\Modelo.csproj", "{A5E7F313-8F0E-485B-93CA-582D53A4DAF6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AlquilaFacil", "Aspnet\AlquilaFacil.csproj", "{67D58AA3-8B5A-4DF8-99DF-3A01F028FF10}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -21,6 +23,10 @@ Global
{A5E7F313-8F0E-485B-93CA-582D53A4DAF6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A5E7F313-8F0E-485B-93CA-582D53A4DAF6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A5E7F313-8F0E-485B-93CA-582D53A4DAF6}.Release|Any CPU.Build.0 = Release|Any CPU
{67D58AA3-8B5A-4DF8-99DF-3A01F028FF10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{67D58AA3-8B5A-4DF8-99DF-3A01F028FF10}.Debug|Any CPU.Build.0 = Debug|Any CPU
{67D58AA3-8B5A-4DF8-99DF-3A01F028FF10}.Release|Any CPU.ActiveCfg = Release|Any CPU
{67D58AA3-8B5A-4DF8-99DF-3A01F028FF10}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@@ -1,6 +1,9 @@
@{
ViewData["Title"] = "Menu Principal";
}
@{
Layout = "_Layout";
}
<div class="text-center">
<h1><u>@ViewData["Title"]</u></h1>

View File

@@ -1,6 +1,10 @@
@{
ViewData["Title"] = "Crud Inquilino";
}
@{
Layout = "_Layout";
}
<h3>Inquilinos</h3>
<table border="1">
<thead>

View File

@@ -1,6 +1,10 @@
@{
ViewData["Title"] = "Info";
}
@{
Layout = "_Layout";
}
<h1>@ViewData["Title"]</h1>
<p>Este es un sistema hecho por Federico Polidoro Para las materias de Ing en sistemas y Trabajo de diploma.</p>

View File

@@ -0,0 +1 @@

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -1,3 +0,0 @@
@{
Layout = "_Layout";
}