├── Importante Leer!.txt ├── LICENSE ├── Scripts ├── 01_CrearBase_Tablas.sql └── 02_CrearProcedimientos.sql └── SistemaPrestamo ├── .vs ├── ProjectEvaluation │ ├── sistemaprestamo.metadata.v7.bin │ └── sistemaprestamo.projects.v7.bin └── SistemaPrestamo │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ ├── FileContentIndex │ ├── 1e6b1c98-1c0a-4205-80fd-dff303328d62.vsidx │ ├── 421c0af9-7f74-403f-aee1-c15c09eb0bfe.vsidx │ ├── 5654cec6-d316-458c-853b-aa23509b60d6.vsidx │ ├── 65987cf7-706e-44ff-a29f-b7faa2fa9acf.vsidx │ └── c1ed5450-8170-487a-b5ef-8cc788f13961.vsidx │ ├── config │ └── applicationhost.config │ └── v17 │ ├── .futdcache.v2 │ ├── .suo │ └── DocumentLayout.json ├── Prestamo.Data ├── ClienteData.cs ├── ConnectionStrings.cs ├── MonedaData.cs ├── Prestamo.Data.csproj ├── PrestamoData.cs ├── ResumenData.cs ├── UsuarioData.cs ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Prestamo.Data.deps.json │ │ ├── Prestamo.Data.dll │ │ ├── Prestamo.Data.pdb │ │ ├── Prestamo.Entidades.dll │ │ └── Prestamo.Entidades.pdb └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Prestamo.B65E97AF.Up2Date │ │ ├── Prestamo.Data.AssemblyInfo.cs │ │ ├── Prestamo.Data.AssemblyInfoInputs.cache │ │ ├── Prestamo.Data.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Prestamo.Data.GlobalUsings.g.cs │ │ ├── Prestamo.Data.assets.cache │ │ ├── Prestamo.Data.csproj.AssemblyReference.cache │ │ ├── Prestamo.Data.csproj.BuildWithSkipAnalyzers │ │ ├── Prestamo.Data.csproj.CoreCompileInputs.cache │ │ ├── Prestamo.Data.csproj.FileListAbsolute.txt │ │ ├── Prestamo.Data.dll │ │ ├── Prestamo.Data.pdb │ │ ├── ref │ │ └── Prestamo.Data.dll │ │ └── refint │ │ └── Prestamo.Data.dll │ ├── Prestamo.Data.csproj.nuget.dgspec.json │ ├── Prestamo.Data.csproj.nuget.g.props │ ├── Prestamo.Data.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Prestamo.Entidades ├── Cliente.cs ├── Moneda.cs ├── Prestamo.Entidades.csproj ├── Prestamo.cs ├── PrestamoDetalle.cs ├── Resumen.cs ├── Usuario.cs ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Prestamo.Entidades.deps.json │ │ ├── Prestamo.Entidades.dll │ │ └── Prestamo.Entidades.pdb └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Prestamo.Entidades.AssemblyInfo.cs │ │ ├── Prestamo.Entidades.AssemblyInfoInputs.cache │ │ ├── Prestamo.Entidades.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Prestamo.Entidades.GlobalUsings.g.cs │ │ ├── Prestamo.Entidades.assets.cache │ │ ├── Prestamo.Entidades.csproj.BuildWithSkipAnalyzers │ │ ├── Prestamo.Entidades.csproj.CoreCompileInputs.cache │ │ ├── Prestamo.Entidades.csproj.FileListAbsolute.txt │ │ ├── Prestamo.Entidades.dll │ │ ├── Prestamo.Entidades.pdb │ │ ├── ref │ │ └── Prestamo.Entidades.dll │ │ └── refint │ │ └── Prestamo.Entidades.dll │ ├── Prestamo.Entidades.csproj.nuget.dgspec.json │ ├── Prestamo.Entidades.csproj.nuget.g.props │ ├── Prestamo.Entidades.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Prestamo.Web ├── Controllers │ ├── ClienteController.cs │ ├── CobrarController.cs │ ├── HomeController.cs │ ├── LoginController.cs │ ├── MonedaController.cs │ └── PrestamoController.cs ├── Models │ └── ErrorViewModel.cs ├── Prestamo.Web.csproj ├── Prestamo.Web.csproj.user ├── Program.cs ├── Properties │ └── launchSettings.json ├── Views │ ├── Cliente │ │ └── Index.cshtml │ ├── Cobrar │ │ └── Index.cshtml │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Login │ │ └── Index.cshtml │ ├── Moneda │ │ └── Index.cshtml │ ├── Prestamo │ │ ├── Index.cshtml │ │ └── Nuevo.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── HarfBuzzSharp.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Prestamo.Data.dll │ │ ├── Prestamo.Data.pdb │ │ ├── Prestamo.Entidades.dll │ │ ├── Prestamo.Entidades.pdb │ │ ├── Prestamo.Web.deps.json │ │ ├── Prestamo.Web.dll │ │ ├── Prestamo.Web.exe │ │ ├── Prestamo.Web.pdb │ │ ├── Prestamo.Web.runtimeconfig.json │ │ ├── Prestamo.Web.staticwebassets.runtime.json │ │ ├── QuestPDF.dll │ │ ├── SkiaSharp.HarfBuzz.dll │ │ ├── SkiaSharp.dll │ │ ├── System.Data.SqlClient.dll │ │ ├── System.Security.Permissions.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── runtimes │ │ ├── osx │ │ └── native │ │ │ ├── libHarfBuzzSharp.dylib │ │ │ └── libSkiaSharp.dylib │ │ ├── unix │ │ └── lib │ │ │ └── netcoreapp2.1 │ │ │ └── System.Data.SqlClient.dll │ │ ├── win-arm64 │ │ └── native │ │ │ ├── libHarfBuzzSharp.dll │ │ │ ├── libSkiaSharp.dll │ │ │ └── sni.dll │ │ ├── win-x64 │ │ └── native │ │ │ ├── libHarfBuzzSharp.dll │ │ │ ├── libSkiaSharp.dll │ │ │ └── sni.dll │ │ ├── win-x86 │ │ └── native │ │ │ ├── libHarfBuzzSharp.dll │ │ │ ├── libSkiaSharp.dll │ │ │ └── sni.dll │ │ └── win │ │ └── lib │ │ └── netcoreapp2.1 │ │ └── System.Data.SqlClient.dll ├── obj │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── ApiEndpoints.json │ │ │ ├── Prestamo.1E30C6AD.Up2Date │ │ │ ├── Prestamo.Web.AssemblyInfo.cs │ │ │ ├── Prestamo.Web.AssemblyInfoInputs.cache │ │ │ ├── Prestamo.Web.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Prestamo.Web.GlobalUsings.g.cs │ │ │ ├── Prestamo.Web.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── Prestamo.Web.RazorAssemblyInfo.cache │ │ │ ├── Prestamo.Web.RazorAssemblyInfo.cs │ │ │ ├── Prestamo.Web.assets.cache │ │ │ ├── Prestamo.Web.csproj.AssemblyReference.cache │ │ │ ├── Prestamo.Web.csproj.BuildWithSkipAnalyzers │ │ │ ├── Prestamo.Web.csproj.CoreCompileInputs.cache │ │ │ ├── Prestamo.Web.csproj.FileListAbsolute.txt │ │ │ ├── Prestamo.Web.dll │ │ │ ├── Prestamo.Web.genruntimeconfig.cache │ │ │ ├── Prestamo.Web.pdb │ │ │ ├── apphost.exe │ │ │ ├── project.razor.vs.bin │ │ │ ├── ref │ │ │ └── Prestamo.Web.dll │ │ │ ├── refint │ │ │ └── Prestamo.Web.dll │ │ │ ├── scopedcss │ │ │ ├── Views │ │ │ │ └── Shared │ │ │ │ │ └── _Layout.cshtml.rz.scp.css │ │ │ ├── bundle │ │ │ │ └── Prestamo.Web.styles.css │ │ │ └── projectbundle │ │ │ │ └── Prestamo.Web.bundle.scp.css │ │ │ ├── staticwebassets.build.json │ │ │ ├── staticwebassets.development.json │ │ │ ├── staticwebassets.pack.json │ │ │ └── staticwebassets │ │ │ ├── msbuild.Prestamo.Web.Microsoft.AspNetCore.StaticWebAssets.props │ │ │ ├── msbuild.build.Prestamo.Web.props │ │ │ ├── msbuild.buildMultiTargeting.Prestamo.Web.props │ │ │ └── msbuild.buildTransitive.Prestamo.Web.props │ ├── Prestamo.Web.csproj.nuget.dgspec.json │ ├── Prestamo.Web.csproj.nuget.g.props │ ├── Prestamo.Web.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── wwwroot │ ├── css │ └── styles.css │ ├── favicon.ico │ ├── js │ └── scripts.js │ ├── lib │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── datatables2 │ │ ├── css │ │ │ └── dataTables.dataTables.css │ │ └── js │ │ │ ├── dataTables.js │ │ │ └── moment.min.js │ ├── fontawesome │ │ └── all.js │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ ├── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ ├── loadingoverlay │ │ └── loadingoverlay.min.js │ ├── moment │ │ └── moment.min.js │ ├── select2 │ │ ├── css │ │ │ ├── select2-bootstrap-5-theme.min.css │ │ │ └── select2.min.css │ │ └── js │ │ │ └── select2.min.js │ └── sweetAlert2 │ │ └── js │ │ └── sweetalert2.js │ └── views │ ├── Cliente.js │ ├── Cobrar.js │ ├── Home.js │ ├── Moneda.js │ ├── NuevoPrestamo.js │ └── Prestamo.js └── SistemaPrestamo.sln /Importante Leer!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/Importante Leer!.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/LICENSE -------------------------------------------------------------------------------- /Scripts/01_CrearBase_Tablas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/Scripts/01_CrearBase_Tablas.sql -------------------------------------------------------------------------------- /Scripts/02_CrearProcedimientos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/Scripts/02_CrearProcedimientos.sql -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/ProjectEvaluation/sistemaprestamo.metadata.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/ProjectEvaluation/sistemaprestamo.metadata.v7.bin -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/ProjectEvaluation/sistemaprestamo.projects.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/ProjectEvaluation/sistemaprestamo.projects.v7.bin -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/SistemaPrestamo/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/SistemaPrestamo/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/SistemaPrestamo/FileContentIndex/1e6b1c98-1c0a-4205-80fd-dff303328d62.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/SistemaPrestamo/FileContentIndex/1e6b1c98-1c0a-4205-80fd-dff303328d62.vsidx -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/SistemaPrestamo/FileContentIndex/421c0af9-7f74-403f-aee1-c15c09eb0bfe.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/SistemaPrestamo/FileContentIndex/421c0af9-7f74-403f-aee1-c15c09eb0bfe.vsidx -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/SistemaPrestamo/FileContentIndex/5654cec6-d316-458c-853b-aa23509b60d6.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/SistemaPrestamo/FileContentIndex/5654cec6-d316-458c-853b-aa23509b60d6.vsidx -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/SistemaPrestamo/FileContentIndex/65987cf7-706e-44ff-a29f-b7faa2fa9acf.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/SistemaPrestamo/FileContentIndex/65987cf7-706e-44ff-a29f-b7faa2fa9acf.vsidx -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/SistemaPrestamo/FileContentIndex/c1ed5450-8170-487a-b5ef-8cc788f13961.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/SistemaPrestamo/FileContentIndex/c1ed5450-8170-487a-b5ef-8cc788f13961.vsidx -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/SistemaPrestamo/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/SistemaPrestamo/config/applicationhost.config -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/SistemaPrestamo/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/SistemaPrestamo/v17/.futdcache.v2 -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/SistemaPrestamo/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/SistemaPrestamo/v17/.suo -------------------------------------------------------------------------------- /SistemaPrestamo/.vs/SistemaPrestamo/v17/DocumentLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/.vs/SistemaPrestamo/v17/DocumentLayout.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/ClienteData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/ClienteData.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/ConnectionStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/ConnectionStrings.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/MonedaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/MonedaData.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/Prestamo.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/Prestamo.Data.csproj -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/PrestamoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/PrestamoData.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/ResumenData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/ResumenData.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/UsuarioData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/UsuarioData.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/bin/Debug/net8.0/Prestamo.Data.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/bin/Debug/net8.0/Prestamo.Data.deps.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/bin/Debug/net8.0/Prestamo.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/bin/Debug/net8.0/Prestamo.Data.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/bin/Debug/net8.0/Prestamo.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/bin/Debug/net8.0/Prestamo.Data.pdb -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/bin/Debug/net8.0/Prestamo.Entidades.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/bin/Debug/net8.0/Prestamo.Entidades.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/bin/Debug/net8.0/Prestamo.Entidades.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/bin/Debug/net8.0/Prestamo.Entidades.pdb -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.B65E97AF.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.AssemblyInfo.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.assets.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/Prestamo.Data.pdb -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/ref/Prestamo.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/ref/Prestamo.Data.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/refint/Prestamo.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Debug/net8.0/refint/Prestamo.Data.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Prestamo.Data.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Prestamo.Data.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Prestamo.Data.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Prestamo.Data.csproj.nuget.g.props -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/Prestamo.Data.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/Prestamo.Data.csproj.nuget.g.targets -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/project.assets.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Data/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Data/obj/project.nuget.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/Cliente.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/Cliente.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/Moneda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/Moneda.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/Prestamo.Entidades.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/Prestamo.Entidades.csproj -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/Prestamo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/Prestamo.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/PrestamoDetalle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/PrestamoDetalle.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/Resumen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/Resumen.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/Usuario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/Usuario.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/bin/Debug/net8.0/Prestamo.Entidades.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/bin/Debug/net8.0/Prestamo.Entidades.deps.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/bin/Debug/net8.0/Prestamo.Entidades.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/bin/Debug/net8.0/Prestamo.Entidades.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/bin/Debug/net8.0/Prestamo.Entidades.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/bin/Debug/net8.0/Prestamo.Entidades.pdb -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.AssemblyInfo.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.assets.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/Prestamo.Entidades.pdb -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/ref/Prestamo.Entidades.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/ref/Prestamo.Entidades.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/refint/Prestamo.Entidades.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Debug/net8.0/refint/Prestamo.Entidades.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Prestamo.Entidades.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Prestamo.Entidades.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Prestamo.Entidades.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Prestamo.Entidades.csproj.nuget.g.props -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/Prestamo.Entidades.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/Prestamo.Entidades.csproj.nuget.g.targets -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/project.assets.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Entidades/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Entidades/obj/project.nuget.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Controllers/ClienteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Controllers/ClienteController.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Controllers/CobrarController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Controllers/CobrarController.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Controllers/LoginController.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Controllers/MonedaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Controllers/MonedaController.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Controllers/PrestamoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Controllers/PrestamoController.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Prestamo.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Prestamo.Web.csproj -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Prestamo.Web.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Prestamo.Web.csproj.user -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Program.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Cliente/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Cliente/Index.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Cobrar/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Cobrar/Index.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Login/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Login/Index.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Moneda/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Moneda/Index.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Prestamo/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Prestamo/Index.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Prestamo/Nuevo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Prestamo/Nuevo.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/appsettings.Development.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/appsettings.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/HarfBuzzSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/HarfBuzzSharp.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Data.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Data.pdb -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Entidades.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Entidades.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Entidades.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Entidades.pdb -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.deps.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.exe -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.pdb -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.runtimeconfig.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.staticwebassets.runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/Prestamo.Web.staticwebassets.runtime.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/QuestPDF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/QuestPDF.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/SkiaSharp.HarfBuzz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/SkiaSharp.HarfBuzz.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/SkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/SkiaSharp.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/appsettings.Development.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/appsettings.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/bin/Debug/net8.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/ApiEndpoints.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.1E30C6AD.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.AssemblyInfo.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.RazorAssemblyInfo.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.assets.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.genruntimeconfig.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/Prestamo.Web.pdb -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/apphost.exe -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/project.razor.vs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/project.razor.vs.bin -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/ref/Prestamo.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/ref/Prestamo.Web.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/refint/Prestamo.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/refint/Prestamo.Web.dll -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/scopedcss/bundle/Prestamo.Web.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/scopedcss/bundle/Prestamo.Web.styles.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/scopedcss/projectbundle/Prestamo.Web.bundle.scp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/scopedcss/projectbundle/Prestamo.Web.bundle.scp.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets.build.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets.development.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets.pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets.pack.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets/msbuild.Prestamo.Web.Microsoft.AspNetCore.StaticWebAssets.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets/msbuild.Prestamo.Web.Microsoft.AspNetCore.StaticWebAssets.props -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets/msbuild.build.Prestamo.Web.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets/msbuild.build.Prestamo.Web.props -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Prestamo.Web.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Prestamo.Web.props -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Prestamo.Web.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Prestamo.Web.props -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Prestamo.Web.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Prestamo.Web.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Prestamo.Web.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Prestamo.Web.csproj.nuget.g.props -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/Prestamo.Web.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/Prestamo.Web.csproj.nuget.g.targets -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/project.assets.json -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/obj/project.nuget.cache -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/css/styles.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/js/scripts.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/datatables2/css/dataTables.dataTables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/datatables2/css/dataTables.dataTables.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/datatables2/js/dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/datatables2/js/dataTables.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/datatables2/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/datatables2/js/moment.min.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/fontawesome/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/fontawesome/all.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/loadingoverlay/loadingoverlay.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/loadingoverlay/loadingoverlay.min.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/moment/moment.min.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/select2/css/select2-bootstrap-5-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/select2/css/select2-bootstrap-5-theme.min.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/select2/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/select2/css/select2.min.css -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/select2/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/select2/js/select2.min.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/lib/sweetAlert2/js/sweetalert2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/lib/sweetAlert2/js/sweetalert2.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/views/Cliente.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/views/Cliente.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/views/Cobrar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/views/Cobrar.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/views/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/views/Home.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/views/Moneda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/views/Moneda.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/views/NuevoPrestamo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/views/NuevoPrestamo.js -------------------------------------------------------------------------------- /SistemaPrestamo/Prestamo.Web/wwwroot/views/Prestamo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/Prestamo.Web/wwwroot/views/Prestamo.js -------------------------------------------------------------------------------- /SistemaPrestamo/SistemaPrestamo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodigoEstudiante/118_SistemaPrestamo_Net8_ADO.NET_NCapas/HEAD/SistemaPrestamo/SistemaPrestamo.sln --------------------------------------------------------------------------------