moved aspnet logic to a diferent folder
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,3 +5,4 @@
|
||||
/Modelo/obj/
|
||||
/Entidades/bin/
|
||||
/Entidades/obj/
|
||||
/Aspnet/obj/
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
@{
|
||||
ViewData["Title"] = "Menu Principal";
|
||||
}
|
||||
@{
|
||||
Layout = "_Layout";
|
||||
}
|
||||
|
||||
<div class="text-center">
|
||||
<h1><u>@ViewData["Title"]</u></h1>
|
||||
@@ -1,6 +1,10 @@
|
||||
@{
|
||||
ViewData["Title"] = "Crud Inquilino";
|
||||
}
|
||||
@{
|
||||
Layout = "_Layout";
|
||||
}
|
||||
|
||||
<h3>Inquilinos</h3>
|
||||
<table border="1">
|
||||
<thead>
|
||||
@@ -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>
|
||||
1
Aspnet/Views/_ViewStart.cshtml
Normal file
1
Aspnet/Views/_ViewStart.cshtml
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
@@ -1,3 +0,0 @@
|
||||
@{
|
||||
Layout = "_Layout";
|
||||
}
|
||||
Reference in New Issue
Block a user