diff --git a/.gitignore b/.gitignore index b69ac02..be7661e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,70 +1,275 @@ -## Build results -bin/ -obj/ -[Bb]uild/ -[Ll]og/ +# Created by https://www.toptal.com/developers/gitignore/api/aspnetcore +# Edit at https://www.toptal.com/developers/gitignore?templates=aspnetcore -## User-specific files +### ASPNETCore ### +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +.env + +# User-specific files +*.suo *.user *.userosscache -*.suo *.sln.docstates -## VS Code -.vscode/ +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs -## JetBrains Rider / ReSharper -.idea/ -*.sln.iml -_ReSharper*/ -*.DotSettings +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ -## ASP.NET Scaffolding -ScaffoldingReadMe.txt +# Visual Studio 2015 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ -## dotnet +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUNIT +*.VisualState.xml +TestResult.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# DNX project.lock.json project.fragment.lock.json artifacts/ -*.deps.json -## NuGet -*.nupkg -*.snupkg -.nuget/ -packages/ -*.nuspec -*.psmdcp - -## Visual Studio -*.dbmdl -*.sdf -*.cache +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.pch *.pdb -*.opendb -*.VC.db -*.sln.ide - -## Publish output -publish/ -out/ - -## Logs -*.log - -## Temp files +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh *.tmp -~$* +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc -## Test results -TestResults/ +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding add-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# Visual Studio code coverage results *.coverage *.coveragexml -## User secrets -secrets.json -*.secrets.json +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* -## OS generated files -.DS_Store -Thumbs.db \ No newline at end of file +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# TODO: Comment the next line if you want to checkin your web deploy settings +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config +# NuGet v3's project.json files produces more ignoreable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +node_modules/ +orleans.codegen.cs + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +*.mdf +*.ldf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# JetBrains Rider +.idea/ +*.sln.iml + +# CodeRush +.cr/ + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/ + +# End of https://www.toptal.com/developers/gitignore/api/aspnetcore diff --git a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/CodeChunks.db b/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/CodeChunks.db deleted file mode 100644 index 7ac0217..0000000 Binary files a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/CodeChunks.db and /dev/null differ diff --git a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/CodeChunks.db-shm b/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/CodeChunks.db-shm deleted file mode 100644 index 54c2302..0000000 Binary files a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/CodeChunks.db-shm and /dev/null differ diff --git a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/CodeChunks.db-wal b/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/CodeChunks.db-wal deleted file mode 100644 index 7f1fbfe..0000000 Binary files a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/CodeChunks.db-wal and /dev/null differ diff --git a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/SemanticSymbols.db b/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/SemanticSymbols.db deleted file mode 100644 index 527188c..0000000 Binary files a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/SemanticSymbols.db and /dev/null differ diff --git a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/SemanticSymbols.db-shm b/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/SemanticSymbols.db-shm deleted file mode 100644 index d7694ac..0000000 Binary files a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/SemanticSymbols.db-shm and /dev/null differ diff --git a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/SemanticSymbols.db-wal b/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/SemanticSymbols.db-wal deleted file mode 100644 index a58b2aa..0000000 Binary files a/.vs/Integracion_DGA/CopilotIndices/17.12.38.29086/SemanticSymbols.db-wal and /dev/null differ diff --git a/.vs/Integracion_DGA/CopilotIndices/17.14.786.1071/CodeChunks.db b/.vs/Integracion_DGA/CopilotIndices/17.14.786.1071/CodeChunks.db deleted file mode 100644 index 312625c..0000000 Binary files a/.vs/Integracion_DGA/CopilotIndices/17.14.786.1071/CodeChunks.db and /dev/null differ diff --git a/.vs/Integracion_DGA/CopilotIndices/17.14.786.1071/SemanticSymbols.db b/.vs/Integracion_DGA/CopilotIndices/17.14.786.1071/SemanticSymbols.db deleted file mode 100644 index 76e2e86..0000000 Binary files a/.vs/Integracion_DGA/CopilotIndices/17.14.786.1071/SemanticSymbols.db and /dev/null differ diff --git a/.vs/Integracion_DGA/DesignTimeBuild/.dtbcache.v2 b/.vs/Integracion_DGA/DesignTimeBuild/.dtbcache.v2 deleted file mode 100644 index 6bec4cc..0000000 Binary files a/.vs/Integracion_DGA/DesignTimeBuild/.dtbcache.v2 and /dev/null differ diff --git a/.vs/Integracion_DGA/FileContentIndex/034a7bc6-dd68-486f-aa33-ae1beba7a444.vsidx b/.vs/Integracion_DGA/FileContentIndex/034a7bc6-dd68-486f-aa33-ae1beba7a444.vsidx deleted file mode 100644 index 8948e9d..0000000 Binary files a/.vs/Integracion_DGA/FileContentIndex/034a7bc6-dd68-486f-aa33-ae1beba7a444.vsidx and /dev/null differ diff --git a/.vs/Integracion_DGA/FileContentIndex/3be679a6-a855-453d-abed-5c6fbcc7ee61.vsidx b/.vs/Integracion_DGA/FileContentIndex/3be679a6-a855-453d-abed-5c6fbcc7ee61.vsidx deleted file mode 100644 index 97a7cb4..0000000 Binary files a/.vs/Integracion_DGA/FileContentIndex/3be679a6-a855-453d-abed-5c6fbcc7ee61.vsidx and /dev/null differ diff --git a/.vs/Integracion_DGA/FileContentIndex/54f3dad2-ad42-43a4-a6f1-af41f27d920c.vsidx b/.vs/Integracion_DGA/FileContentIndex/54f3dad2-ad42-43a4-a6f1-af41f27d920c.vsidx deleted file mode 100644 index 2949066..0000000 Binary files a/.vs/Integracion_DGA/FileContentIndex/54f3dad2-ad42-43a4-a6f1-af41f27d920c.vsidx and /dev/null differ diff --git a/.vs/Integracion_DGA/FileContentIndex/7d877938-7649-41b5-8de9-8bcdd427fd56.vsidx b/.vs/Integracion_DGA/FileContentIndex/7d877938-7649-41b5-8de9-8bcdd427fd56.vsidx deleted file mode 100644 index 9b09af0..0000000 Binary files a/.vs/Integracion_DGA/FileContentIndex/7d877938-7649-41b5-8de9-8bcdd427fd56.vsidx and /dev/null differ diff --git a/.vs/Integracion_DGA/FileContentIndex/df0ad032-c55f-4a35-877c-8b6bae888a18.vsidx b/.vs/Integracion_DGA/FileContentIndex/df0ad032-c55f-4a35-877c-8b6bae888a18.vsidx deleted file mode 100644 index 86a63be..0000000 Binary files a/.vs/Integracion_DGA/FileContentIndex/df0ad032-c55f-4a35-877c-8b6bae888a18.vsidx and /dev/null differ diff --git a/.vs/Integracion_DGA/config/applicationhost.config b/.vs/Integracion_DGA/config/applicationhost.config deleted file mode 100644 index 0d88f0d..0000000 --- a/.vs/Integracion_DGA/config/applicationhost.config +++ /dev/null @@ -1,1016 +0,0 @@ - - - - - - - -
-
-
-
-
-
-
-
- - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
- -
-
-
-
-
-
- -
-
-
-
-
- -
-
-
- -
-
- -
-
- -
-
-
- - -
-
-
-
-
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.vs/Integracion_DGA/v17/.futdcache.v2 b/.vs/Integracion_DGA/v17/.futdcache.v2 deleted file mode 100644 index 41a1ba4..0000000 Binary files a/.vs/Integracion_DGA/v17/.futdcache.v2 and /dev/null differ diff --git a/.vs/Integracion_DGA/v17/DocumentLayout.backup.json b/.vs/Integracion_DGA/v17/DocumentLayout.backup.json deleted file mode 100644 index fe929bc..0000000 --- a/.vs/Integracion_DGA/v17/DocumentLayout.backup.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "Version": 1, - "WorkspaceRootPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\", - "Documents": [ - { - "AbsoluteMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\integracion_dga\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}", - "RelativeMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|solutionrelative:integracion_dga\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}" - }, - { - "AbsoluteMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\integracion_dga\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|solutionrelative:integracion_dga\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" - }, - { - "AbsoluteMoniker": "D:0:0:{E7F63FE5-0448-4903-9247-D57A4BCB6A01}|DAS\\DAS.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\das\\registrarmedicion.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{E7F63FE5-0448-4903-9247-D57A4BCB6A01}|DAS\\DAS.csproj|solutionrelative:das\\registrarmedicion.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" - }, - { - "AbsoluteMoniker": "D:0:0:{D2051D35-AE15-42FF-985B-F2CA99312901}|BLL\\BLL.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\bll\\enviodga.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{D2051D35-AE15-42FF-985B-F2CA99312901}|BLL\\BLL.csproj|solutionrelative:bll\\enviodga.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" - } - ], - "DocumentGroupContainers": [ - { - "Orientation": 0, - "VerticalTabListWidth": 256, - "DocumentGroups": [ - { - "DockedWidth": 200, - "SelectedChildIndex": 0, - "Children": [ - { - "$type": "Document", - "DocumentIndex": 0, - "Title": "appsettings.json", - "DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\appsettings.json", - "RelativeDocumentMoniker": "Integracion_DGA\\appsettings.json", - "ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\appsettings.json", - "RelativeToolTip": "Integracion_DGA\\appsettings.json", - "ViewState": "AgIAAAAAAAAAAAAAAAAAAAsAAAAbAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001642|", - "WhenOpened": "2025-06-24T19:39:04.739Z", - "IsPinned": true, - "EditorCaption": "" - }, - { - "$type": "Document", - "DocumentIndex": 1, - "Title": "Program.cs", - "DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\Program.cs", - "RelativeDocumentMoniker": "Integracion_DGA\\Program.cs", - "ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\Program.cs", - "RelativeToolTip": "Integracion_DGA\\Program.cs", - "ViewState": "AgIAAAYAAAAAAAAAAAAAABUAAAA8AAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-06-24T18:18:50.842Z", - "IsPinned": true, - "EditorCaption": "" - }, - { - "$type": "Document", - "DocumentIndex": 3, - "Title": "EnvioDGA.cs", - "DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\BLL\\EnvioDGA.cs", - "RelativeDocumentMoniker": "BLL\\EnvioDGA.cs", - "ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\BLL\\EnvioDGA.cs", - "RelativeToolTip": "BLL\\EnvioDGA.cs", - "ViewState": "AgIAACEAAAAAAAAAAAApwDcAAAAtAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-06-24T19:48:45.475Z", - "IsPinned": true, - "EditorCaption": "" - }, - { - "$type": "Document", - "DocumentIndex": 2, - "Title": "RegistrarMedicion.cs", - "DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\RegistrarMedicion.cs", - "RelativeDocumentMoniker": "DAS\\RegistrarMedicion.cs", - "ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\RegistrarMedicion.cs", - "RelativeToolTip": "DAS\\RegistrarMedicion.cs", - "ViewState": "AgIAAAgAAAAAAAAAAAAQwBYAAAAtAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-06-24T19:48:30.955Z", - "IsPinned": true, - "EditorCaption": "" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/.vs/Integracion_DGA/v17/DocumentLayout.json b/.vs/Integracion_DGA/v17/DocumentLayout.json deleted file mode 100644 index fe929bc..0000000 --- a/.vs/Integracion_DGA/v17/DocumentLayout.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "Version": 1, - "WorkspaceRootPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\", - "Documents": [ - { - "AbsoluteMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\integracion_dga\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}", - "RelativeMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|solutionrelative:integracion_dga\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}" - }, - { - "AbsoluteMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\integracion_dga\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|solutionrelative:integracion_dga\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" - }, - { - "AbsoluteMoniker": "D:0:0:{E7F63FE5-0448-4903-9247-D57A4BCB6A01}|DAS\\DAS.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\das\\registrarmedicion.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{E7F63FE5-0448-4903-9247-D57A4BCB6A01}|DAS\\DAS.csproj|solutionrelative:das\\registrarmedicion.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" - }, - { - "AbsoluteMoniker": "D:0:0:{D2051D35-AE15-42FF-985B-F2CA99312901}|BLL\\BLL.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\bll\\enviodga.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{D2051D35-AE15-42FF-985B-F2CA99312901}|BLL\\BLL.csproj|solutionrelative:bll\\enviodga.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" - } - ], - "DocumentGroupContainers": [ - { - "Orientation": 0, - "VerticalTabListWidth": 256, - "DocumentGroups": [ - { - "DockedWidth": 200, - "SelectedChildIndex": 0, - "Children": [ - { - "$type": "Document", - "DocumentIndex": 0, - "Title": "appsettings.json", - "DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\appsettings.json", - "RelativeDocumentMoniker": "Integracion_DGA\\appsettings.json", - "ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\appsettings.json", - "RelativeToolTip": "Integracion_DGA\\appsettings.json", - "ViewState": "AgIAAAAAAAAAAAAAAAAAAAsAAAAbAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001642|", - "WhenOpened": "2025-06-24T19:39:04.739Z", - "IsPinned": true, - "EditorCaption": "" - }, - { - "$type": "Document", - "DocumentIndex": 1, - "Title": "Program.cs", - "DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\Program.cs", - "RelativeDocumentMoniker": "Integracion_DGA\\Program.cs", - "ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\Program.cs", - "RelativeToolTip": "Integracion_DGA\\Program.cs", - "ViewState": "AgIAAAYAAAAAAAAAAAAAABUAAAA8AAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-06-24T18:18:50.842Z", - "IsPinned": true, - "EditorCaption": "" - }, - { - "$type": "Document", - "DocumentIndex": 3, - "Title": "EnvioDGA.cs", - "DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\BLL\\EnvioDGA.cs", - "RelativeDocumentMoniker": "BLL\\EnvioDGA.cs", - "ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\BLL\\EnvioDGA.cs", - "RelativeToolTip": "BLL\\EnvioDGA.cs", - "ViewState": "AgIAACEAAAAAAAAAAAApwDcAAAAtAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-06-24T19:48:45.475Z", - "IsPinned": true, - "EditorCaption": "" - }, - { - "$type": "Document", - "DocumentIndex": 2, - "Title": "RegistrarMedicion.cs", - "DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\RegistrarMedicion.cs", - "RelativeDocumentMoniker": "DAS\\RegistrarMedicion.cs", - "ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\RegistrarMedicion.cs", - "RelativeToolTip": "DAS\\RegistrarMedicion.cs", - "ViewState": "AgIAAAgAAAAAAAAAAAAQwBYAAAAtAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-06-24T19:48:30.955Z", - "IsPinned": true, - "EditorCaption": "" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/.vs/Integracion_DGA/v17/TestStore/0/000.testlog b/.vs/Integracion_DGA/v17/TestStore/0/000.testlog deleted file mode 100644 index d68ec94..0000000 Binary files a/.vs/Integracion_DGA/v17/TestStore/0/000.testlog and /dev/null differ diff --git a/.vs/Integracion_DGA/v17/TestStore/0/testlog.manifest b/.vs/Integracion_DGA/v17/TestStore/0/testlog.manifest deleted file mode 100644 index e92ede2..0000000 Binary files a/.vs/Integracion_DGA/v17/TestStore/0/testlog.manifest and /dev/null differ diff --git a/.vs/ProjectEvaluation/integracion_dga.metadata.v9.bin b/.vs/ProjectEvaluation/integracion_dga.metadata.v9.bin deleted file mode 100644 index 1d5c9e2..0000000 Binary files a/.vs/ProjectEvaluation/integracion_dga.metadata.v9.bin and /dev/null differ diff --git a/.vs/ProjectEvaluation/integracion_dga.projects.v9.bin b/.vs/ProjectEvaluation/integracion_dga.projects.v9.bin deleted file mode 100644 index 6cd30a3..0000000 Binary files a/.vs/ProjectEvaluation/integracion_dga.projects.v9.bin and /dev/null differ diff --git a/.vs/ProjectEvaluation/integracion_dga.strings.v9.bin b/.vs/ProjectEvaluation/integracion_dga.strings.v9.bin deleted file mode 100644 index 2935864..0000000 Binary files a/.vs/ProjectEvaluation/integracion_dga.strings.v9.bin and /dev/null differ