├── .DS_Store ├── .dockerignore ├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE │ ├── dev_pull_request_template.md │ ├── qa_pull_request_template.md │ └── template3.md └── workflows │ └── dotnet.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CaducaRest.IntegrationTest ├── CaducaRest.IntegrationTest.csproj ├── CaducaRest.IntegrationTest.sln ├── CategoriaTest.cs ├── Login.feature ├── Login.feature.cs ├── LoginSteps.cs ├── Model │ └── Usuario.cs ├── Operaciones.cs ├── Properties │ └── launchSettings.json ├── PruebasOperaciones.cs ├── Servicios.cs ├── application.runtimeconfig.json ├── postman │ ├── .DS_Store │ ├── CONTRIBUTING.md │ ├── CaducaRest.Localhost.postman_environment.json │ ├── Login │ │ ├── Login.Azure.postman_environment.json │ │ ├── Login.Hosting.postman_environment.json │ │ ├── Login.Localhost.postman_environment.json │ │ ├── Login.postman_collection.json │ │ └── login.data.csv │ ├── Regression.postman_collection.json │ └── azure.test.bat └── specflow.json ├── CaducaRest.PlayWright.UITest ├── CaducaRest.PlayWright.UITest.csproj ├── CaducaRest.PlayWright.UITest.sln └── PlaywrightTest.cs ├── CaducaRest.UITest ├── CaducaRest.UITest.csproj └── GoogleTest.cs ├── CaducaRest.UnitTest ├── CaducaContextMemoria.cs ├── CaducaRest.UnitTest.csproj ├── Categorias.cs ├── MockLocService.cs ├── Operaciones.cs └── OperacionesTest.cs ├── CaducaRest.sln ├── CaducaRest ├── .DS_Store ├── CaducaRest.csproj ├── CaducaRest.sln ├── CaducaRest │ └── Scripts │ │ └── migrations.sql ├── Controllers │ ├── BaseController.cs │ ├── CategoriasController.cs │ ├── ClientesCategoriasController.cs │ ├── ClientesController.cs │ ├── ProductosController.cs │ ├── UsuariosController.cs │ └── ValuesController.cs ├── Core │ ├── AccesoDAO.cs │ ├── ActividadEnumeration.cs │ ├── ConfigureSwaggerOptions.cs │ ├── Correo.cs │ ├── CustomError.cs │ ├── CustomSQLException.cs │ ├── IAccesoDAO.cs │ ├── ICustomSQLException.cs │ ├── IPGeoLocation.cs │ ├── IPLocate.cs │ ├── IPLocation.cs │ ├── IRegla.cs │ ├── Operaciones.cs │ ├── PermisoEditHandler.cs │ ├── Seguridad.cs │ ├── SwaggerDefaultValues.cs │ └── Token.cs ├── DAO │ ├── CaducidadDAO.cs │ ├── CategoriaDAO.cs │ ├── ClienteDAO.cs │ ├── HistorialDAO.cs │ ├── ProductoDAO.cs │ ├── RolDAO.cs │ ├── RolTablaPermisoDAO.cs │ ├── UsuarioAccesoDAO.cs │ └── UsuarioDAO.cs ├── DTO │ ├── DatosIPDTO.cs │ ├── IPGeoLocationDTO.cs │ ├── LoginDTO.cs │ ├── PermisoDTO.cs │ ├── RefreshTokenDTO.cs │ └── TokenDTO.cs ├── Datos │ └── InicializaDatos.cs ├── Filters │ ├── CustomExceptionFilter.cs │ ├── HistorialFilter.cs │ └── PermisoFilter.cs ├── GraphQL │ └── HotChocolate │ │ ├── CaducidadMutation.cs │ │ └── Query.cs ├── Migrations │ ├── 20181007234331_InitialCreate.Designer.cs │ ├── 20181007234331_InitialCreate.cs │ ├── 20181101045843_IndicesCategoria.Designer.cs │ ├── 20181101045843_IndicesCategoria.cs │ ├── 20181201043458_Tabla_Productos.Designer.cs │ ├── 20181201043458_Tabla_Productos.cs │ ├── 20181206045514_Llave_Producto_Categoria.Designer.cs │ ├── 20181206045514_Llave_Producto_Categoria.cs │ ├── 20190129035350_ProductoNombreUnico.Designer.cs │ ├── 20190129035350_ProductoNombreUnico.cs │ ├── 20190130042513_IXProductoClave.Designer.cs │ ├── 20190130042513_IXProductoClave.cs │ ├── 20190226040532_Clientes.Designer.cs │ ├── 20190226040532_Clientes.cs │ ├── 20190320041421_ClienteCategoria.Designer.cs │ ├── 20190320041421_ClienteCategoria.cs │ ├── 20190515040239_Caducidad.Designer.cs │ ├── 20190515040239_Caducidad.cs │ ├── 20190531032036_TablaRol.Designer.cs │ ├── 20190531032036_TablaRol.cs │ ├── 20190612032258_TablasSeguridad.Designer.cs │ ├── 20190612032258_TablasSeguridad.cs │ ├── 20190615033413_UsuariosRoles.Designer.cs │ ├── 20190615033413_UsuariosRoles.cs │ ├── 20190702034310_UsuariosCategorias.Designer.cs │ ├── 20190702034310_UsuariosCategorias.cs │ ├── 20190710040544_RolTablaPermiso.Designer.cs │ ├── 20190710040544_RolTablaPermiso.cs │ ├── 20190808035237_UsuarioToken.Designer.cs │ ├── 20190808035237_UsuarioToken.cs │ ├── 20190813035657_UsuarioCodigo.Designer.cs │ ├── 20190813035657_UsuarioCodigo.cs │ ├── 20200418215218_Prueba.cs │ ├── 20200418215330_RenombrarIndice.Designer.cs │ ├── 20200418215330_RenombrarIndice.cs │ ├── 20200425175422_IndicePermiso.Designer.cs │ ├── 20200425175422_IndicePermiso.cs │ ├── 20220215042054_errores.Designer.cs │ ├── 20220215042054_errores.cs │ ├── 20220216042820_fixDateTime.Designer.cs │ ├── 20220216042820_fixDateTime.cs │ └── CaducaContextModelSnapshot.cs ├── Models │ ├── CaducaContext.cs │ ├── Caducidad.cs │ ├── Categoria.cs │ ├── Cliente.cs │ ├── ClienteCategoria.cs │ ├── Entity Configurations │ │ ├── CaducidadConfiguration.cs │ │ ├── CategoriaConfiguration.cs │ │ ├── ClienteCategoriaConfiguration.cs │ │ ├── ClienteConfiguration.cs │ │ ├── HistorialConfiguration.cs │ │ ├── PermisoConfiguration.cs │ │ ├── ProductoConfiguration.cs │ │ ├── RolTablaPermisoConfiguration.cs │ │ ├── TablaPermisoConfiguration.cs │ │ ├── TablaRolPermisoConfiguration.cs │ │ ├── UsuarioAccesoConfiguration.cs │ │ ├── UsuarioCategoriaConfiguration.cs │ │ ├── UsuarioClienteConfiguration.cs │ │ ├── UsuarioConfiguration.cs │ │ └── UsuarioRolConfiguration.cs │ ├── Errorres.cs │ ├── Historial.cs │ ├── Permiso.cs │ ├── Producto.cs │ ├── Rol.cs │ ├── RolTablaPermiso.cs │ ├── Tabla.cs │ ├── TablaPermiso.cs │ ├── Usuario.cs │ ├── UsuarioAcceso.cs │ ├── UsuarioCategoria.cs │ ├── UsuarioCliente.cs │ ├── UsuarioPermiso.cs │ └── UsuarioRol.cs ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── Caduca - Web Deploy.pubxml │ │ ├── CaducaRest - Web Deploy.pubxml │ │ ├── CaducaRest2 - Web Deploy.pubxml │ │ ├── FolderProfile 1.pubxml │ │ └── FolderProfile.pubxml │ └── launchSettings.json ├── Resources │ ├── LocService.cs │ ├── SharedResource.cs │ ├── SharedResource.en-US.resx │ ├── SharedResource.es-MX.resx │ ├── mensajes.en.resx │ └── mensajes.es-MX.resx ├── Rules │ ├── Categoria │ │ ├── ReglaClaveUnico.cs │ │ └── ReglaNombreUnico.cs │ ├── Cliente │ │ ├── ClaveValidation.cs │ │ └── RazonSocialValidation.cs │ ├── Producto │ │ ├── ClaveValidation.cs │ │ └── NombreValidation.cs │ └── RequiredWithField.cs ├── Scripts │ ├── CaducaBD.sql │ ├── CaducaSQLBD.sql │ ├── Categoria.sql │ ├── migrations.sql │ └── update_to_latest.sql ├── Setup.sh ├── Startup.cs ├── Templates │ ├── IntentosIncorrectos.html │ └── NuevoAcceso.html ├── appsettings.Development.json ├── appsettings.json ├── logs │ └── readme.md └── web.config ├── Dockerfile ├── Migrations.Dockerfile ├── README.md ├── azure-pipelines-1.yml ├── azure-pipelines.yml ├── docker-compose.override.yml ├── docker-compose.yml └── specflow-pipelines.yml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/.DS_Store -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/dev_pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/.github/PULL_REQUEST_TEMPLATE/dev_pull_request_template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/qa_pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/.github/PULL_REQUEST_TEMPLATE/qa_pull_request_template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/template3.md: -------------------------------------------------------------------------------- 1 | $3 2 | -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/CaducaRest.IntegrationTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/CaducaRest.IntegrationTest.csproj -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/CaducaRest.IntegrationTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/CaducaRest.IntegrationTest.sln -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/CategoriaTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/CategoriaTest.cs -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/Login.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/Login.feature -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/Login.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/Login.feature.cs -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/LoginSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/LoginSteps.cs -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/Model/Usuario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/Model/Usuario.cs -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/Operaciones.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/Operaciones.cs -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/Properties/launchSettings.json -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/PruebasOperaciones.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/PruebasOperaciones.cs -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/Servicios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/Servicios.cs -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/application.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/application.runtimeconfig.json -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/postman/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/postman/.DS_Store -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/postman/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/postman/CONTRIBUTING.md -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/postman/CaducaRest.Localhost.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/postman/CaducaRest.Localhost.postman_environment.json -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/postman/Login/Login.Azure.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/postman/Login/Login.Azure.postman_environment.json -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/postman/Login/Login.Hosting.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/postman/Login/Login.Hosting.postman_environment.json -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/postman/Login/Login.Localhost.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/postman/Login/Login.Localhost.postman_environment.json -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/postman/Login/Login.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/postman/Login/Login.postman_collection.json -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/postman/Login/login.data.csv: -------------------------------------------------------------------------------- 1 | Usuario,Pass 2 | Carlos,DtfhkmTRQ8mNzgRY 3 | Juan,zUvyvsRSCMek58eR 4 | Maria,8cYyY8paESGbzC5E 5 | -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/postman/Regression.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/postman/Regression.postman_collection.json -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/postman/azure.test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/postman/azure.test.bat -------------------------------------------------------------------------------- /CaducaRest.IntegrationTest/specflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.IntegrationTest/specflow.json -------------------------------------------------------------------------------- /CaducaRest.PlayWright.UITest/CaducaRest.PlayWright.UITest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.PlayWright.UITest/CaducaRest.PlayWright.UITest.csproj -------------------------------------------------------------------------------- /CaducaRest.PlayWright.UITest/CaducaRest.PlayWright.UITest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.PlayWright.UITest/CaducaRest.PlayWright.UITest.sln -------------------------------------------------------------------------------- /CaducaRest.PlayWright.UITest/PlaywrightTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.PlayWright.UITest/PlaywrightTest.cs -------------------------------------------------------------------------------- /CaducaRest.UITest/CaducaRest.UITest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.UITest/CaducaRest.UITest.csproj -------------------------------------------------------------------------------- /CaducaRest.UITest/GoogleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.UITest/GoogleTest.cs -------------------------------------------------------------------------------- /CaducaRest.UnitTest/CaducaContextMemoria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.UnitTest/CaducaContextMemoria.cs -------------------------------------------------------------------------------- /CaducaRest.UnitTest/CaducaRest.UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.UnitTest/CaducaRest.UnitTest.csproj -------------------------------------------------------------------------------- /CaducaRest.UnitTest/Categorias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.UnitTest/Categorias.cs -------------------------------------------------------------------------------- /CaducaRest.UnitTest/MockLocService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.UnitTest/MockLocService.cs -------------------------------------------------------------------------------- /CaducaRest.UnitTest/Operaciones.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.UnitTest/Operaciones.cs -------------------------------------------------------------------------------- /CaducaRest.UnitTest/OperacionesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.UnitTest/OperacionesTest.cs -------------------------------------------------------------------------------- /CaducaRest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest.sln -------------------------------------------------------------------------------- /CaducaRest/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/.DS_Store -------------------------------------------------------------------------------- /CaducaRest/CaducaRest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/CaducaRest.csproj -------------------------------------------------------------------------------- /CaducaRest/CaducaRest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/CaducaRest.sln -------------------------------------------------------------------------------- /CaducaRest/CaducaRest/Scripts/migrations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/CaducaRest/Scripts/migrations.sql -------------------------------------------------------------------------------- /CaducaRest/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Controllers/BaseController.cs -------------------------------------------------------------------------------- /CaducaRest/Controllers/CategoriasController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Controllers/CategoriasController.cs -------------------------------------------------------------------------------- /CaducaRest/Controllers/ClientesCategoriasController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Controllers/ClientesCategoriasController.cs -------------------------------------------------------------------------------- /CaducaRest/Controllers/ClientesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Controllers/ClientesController.cs -------------------------------------------------------------------------------- /CaducaRest/Controllers/ProductosController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Controllers/ProductosController.cs -------------------------------------------------------------------------------- /CaducaRest/Controllers/UsuariosController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Controllers/UsuariosController.cs -------------------------------------------------------------------------------- /CaducaRest/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /CaducaRest/Core/AccesoDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/AccesoDAO.cs -------------------------------------------------------------------------------- /CaducaRest/Core/ActividadEnumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/ActividadEnumeration.cs -------------------------------------------------------------------------------- /CaducaRest/Core/ConfigureSwaggerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/ConfigureSwaggerOptions.cs -------------------------------------------------------------------------------- /CaducaRest/Core/Correo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/Correo.cs -------------------------------------------------------------------------------- /CaducaRest/Core/CustomError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/CustomError.cs -------------------------------------------------------------------------------- /CaducaRest/Core/CustomSQLException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/CustomSQLException.cs -------------------------------------------------------------------------------- /CaducaRest/Core/IAccesoDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/IAccesoDAO.cs -------------------------------------------------------------------------------- /CaducaRest/Core/ICustomSQLException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/ICustomSQLException.cs -------------------------------------------------------------------------------- /CaducaRest/Core/IPGeoLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/IPGeoLocation.cs -------------------------------------------------------------------------------- /CaducaRest/Core/IPLocate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/IPLocate.cs -------------------------------------------------------------------------------- /CaducaRest/Core/IPLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/IPLocation.cs -------------------------------------------------------------------------------- /CaducaRest/Core/IRegla.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/IRegla.cs -------------------------------------------------------------------------------- /CaducaRest/Core/Operaciones.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/Operaciones.cs -------------------------------------------------------------------------------- /CaducaRest/Core/PermisoEditHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/PermisoEditHandler.cs -------------------------------------------------------------------------------- /CaducaRest/Core/Seguridad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/Seguridad.cs -------------------------------------------------------------------------------- /CaducaRest/Core/SwaggerDefaultValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/SwaggerDefaultValues.cs -------------------------------------------------------------------------------- /CaducaRest/Core/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Core/Token.cs -------------------------------------------------------------------------------- /CaducaRest/DAO/CaducidadDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DAO/CaducidadDAO.cs -------------------------------------------------------------------------------- /CaducaRest/DAO/CategoriaDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DAO/CategoriaDAO.cs -------------------------------------------------------------------------------- /CaducaRest/DAO/ClienteDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DAO/ClienteDAO.cs -------------------------------------------------------------------------------- /CaducaRest/DAO/HistorialDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DAO/HistorialDAO.cs -------------------------------------------------------------------------------- /CaducaRest/DAO/ProductoDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DAO/ProductoDAO.cs -------------------------------------------------------------------------------- /CaducaRest/DAO/RolDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DAO/RolDAO.cs -------------------------------------------------------------------------------- /CaducaRest/DAO/RolTablaPermisoDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DAO/RolTablaPermisoDAO.cs -------------------------------------------------------------------------------- /CaducaRest/DAO/UsuarioAccesoDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DAO/UsuarioAccesoDAO.cs -------------------------------------------------------------------------------- /CaducaRest/DAO/UsuarioDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DAO/UsuarioDAO.cs -------------------------------------------------------------------------------- /CaducaRest/DTO/DatosIPDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DTO/DatosIPDTO.cs -------------------------------------------------------------------------------- /CaducaRest/DTO/IPGeoLocationDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DTO/IPGeoLocationDTO.cs -------------------------------------------------------------------------------- /CaducaRest/DTO/LoginDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DTO/LoginDTO.cs -------------------------------------------------------------------------------- /CaducaRest/DTO/PermisoDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DTO/PermisoDTO.cs -------------------------------------------------------------------------------- /CaducaRest/DTO/RefreshTokenDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DTO/RefreshTokenDTO.cs -------------------------------------------------------------------------------- /CaducaRest/DTO/TokenDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/DTO/TokenDTO.cs -------------------------------------------------------------------------------- /CaducaRest/Datos/InicializaDatos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Datos/InicializaDatos.cs -------------------------------------------------------------------------------- /CaducaRest/Filters/CustomExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Filters/CustomExceptionFilter.cs -------------------------------------------------------------------------------- /CaducaRest/Filters/HistorialFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Filters/HistorialFilter.cs -------------------------------------------------------------------------------- /CaducaRest/Filters/PermisoFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Filters/PermisoFilter.cs -------------------------------------------------------------------------------- /CaducaRest/GraphQL/HotChocolate/CaducidadMutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/GraphQL/HotChocolate/CaducidadMutation.cs -------------------------------------------------------------------------------- /CaducaRest/GraphQL/HotChocolate/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/GraphQL/HotChocolate/Query.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20181007234331_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20181007234331_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20181007234331_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20181007234331_InitialCreate.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20181101045843_IndicesCategoria.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20181101045843_IndicesCategoria.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20181101045843_IndicesCategoria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20181101045843_IndicesCategoria.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20181201043458_Tabla_Productos.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20181201043458_Tabla_Productos.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20181201043458_Tabla_Productos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20181201043458_Tabla_Productos.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20181206045514_Llave_Producto_Categoria.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20181206045514_Llave_Producto_Categoria.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20181206045514_Llave_Producto_Categoria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20181206045514_Llave_Producto_Categoria.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190129035350_ProductoNombreUnico.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190129035350_ProductoNombreUnico.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190129035350_ProductoNombreUnico.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190129035350_ProductoNombreUnico.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190130042513_IXProductoClave.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190130042513_IXProductoClave.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190130042513_IXProductoClave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190130042513_IXProductoClave.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190226040532_Clientes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190226040532_Clientes.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190226040532_Clientes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190226040532_Clientes.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190320041421_ClienteCategoria.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190320041421_ClienteCategoria.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190320041421_ClienteCategoria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190320041421_ClienteCategoria.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190515040239_Caducidad.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190515040239_Caducidad.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190515040239_Caducidad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190515040239_Caducidad.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190531032036_TablaRol.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190531032036_TablaRol.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190531032036_TablaRol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190531032036_TablaRol.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190612032258_TablasSeguridad.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190612032258_TablasSeguridad.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190612032258_TablasSeguridad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190612032258_TablasSeguridad.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190615033413_UsuariosRoles.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190615033413_UsuariosRoles.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190615033413_UsuariosRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190615033413_UsuariosRoles.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190702034310_UsuariosCategorias.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190702034310_UsuariosCategorias.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190702034310_UsuariosCategorias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190702034310_UsuariosCategorias.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190710040544_RolTablaPermiso.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190710040544_RolTablaPermiso.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190710040544_RolTablaPermiso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190710040544_RolTablaPermiso.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190808035237_UsuarioToken.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190808035237_UsuarioToken.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190808035237_UsuarioToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190808035237_UsuarioToken.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190813035657_UsuarioCodigo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190813035657_UsuarioCodigo.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20190813035657_UsuarioCodigo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20190813035657_UsuarioCodigo.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20200418215218_Prueba.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20200418215218_Prueba.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20200418215330_RenombrarIndice.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20200418215330_RenombrarIndice.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20200418215330_RenombrarIndice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20200418215330_RenombrarIndice.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20200425175422_IndicePermiso.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20200425175422_IndicePermiso.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20200425175422_IndicePermiso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20200425175422_IndicePermiso.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20220215042054_errores.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20220215042054_errores.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20220215042054_errores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20220215042054_errores.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20220216042820_fixDateTime.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20220216042820_fixDateTime.Designer.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/20220216042820_fixDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/20220216042820_fixDateTime.cs -------------------------------------------------------------------------------- /CaducaRest/Migrations/CaducaContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Migrations/CaducaContextModelSnapshot.cs -------------------------------------------------------------------------------- /CaducaRest/Models/CaducaContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/CaducaContext.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Caducidad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Caducidad.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Categoria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Categoria.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Cliente.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Cliente.cs -------------------------------------------------------------------------------- /CaducaRest/Models/ClienteCategoria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/ClienteCategoria.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/CaducidadConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/CaducidadConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/CategoriaConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/CategoriaConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/ClienteCategoriaConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/ClienteCategoriaConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/ClienteConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/ClienteConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/HistorialConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/HistorialConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/PermisoConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/PermisoConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/ProductoConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/ProductoConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/RolTablaPermisoConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/RolTablaPermisoConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/TablaPermisoConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/TablaPermisoConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/TablaRolPermisoConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/TablaRolPermisoConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/UsuarioAccesoConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/UsuarioAccesoConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/UsuarioCategoriaConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/UsuarioCategoriaConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/UsuarioClienteConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/UsuarioClienteConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/UsuarioConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/UsuarioConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Entity Configurations/UsuarioRolConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Entity Configurations/UsuarioRolConfiguration.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Errorres.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Errorres.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Historial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Historial.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Permiso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Permiso.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Producto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Producto.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Rol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Rol.cs -------------------------------------------------------------------------------- /CaducaRest/Models/RolTablaPermiso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/RolTablaPermiso.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Tabla.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Tabla.cs -------------------------------------------------------------------------------- /CaducaRest/Models/TablaPermiso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/TablaPermiso.cs -------------------------------------------------------------------------------- /CaducaRest/Models/Usuario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/Usuario.cs -------------------------------------------------------------------------------- /CaducaRest/Models/UsuarioAcceso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/UsuarioAcceso.cs -------------------------------------------------------------------------------- /CaducaRest/Models/UsuarioCategoria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/UsuarioCategoria.cs -------------------------------------------------------------------------------- /CaducaRest/Models/UsuarioCliente.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/UsuarioCliente.cs -------------------------------------------------------------------------------- /CaducaRest/Models/UsuarioPermiso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/UsuarioPermiso.cs -------------------------------------------------------------------------------- /CaducaRest/Models/UsuarioRol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Models/UsuarioRol.cs -------------------------------------------------------------------------------- /CaducaRest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Program.cs -------------------------------------------------------------------------------- /CaducaRest/Properties/PublishProfiles/Caduca - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Properties/PublishProfiles/Caduca - Web Deploy.pubxml -------------------------------------------------------------------------------- /CaducaRest/Properties/PublishProfiles/CaducaRest - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Properties/PublishProfiles/CaducaRest - Web Deploy.pubxml -------------------------------------------------------------------------------- /CaducaRest/Properties/PublishProfiles/CaducaRest2 - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Properties/PublishProfiles/CaducaRest2 - Web Deploy.pubxml -------------------------------------------------------------------------------- /CaducaRest/Properties/PublishProfiles/FolderProfile 1.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Properties/PublishProfiles/FolderProfile 1.pubxml -------------------------------------------------------------------------------- /CaducaRest/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /CaducaRest/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Properties/launchSettings.json -------------------------------------------------------------------------------- /CaducaRest/Resources/LocService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Resources/LocService.cs -------------------------------------------------------------------------------- /CaducaRest/Resources/SharedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Resources/SharedResource.cs -------------------------------------------------------------------------------- /CaducaRest/Resources/SharedResource.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Resources/SharedResource.en-US.resx -------------------------------------------------------------------------------- /CaducaRest/Resources/SharedResource.es-MX.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Resources/SharedResource.es-MX.resx -------------------------------------------------------------------------------- /CaducaRest/Resources/mensajes.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Resources/mensajes.en.resx -------------------------------------------------------------------------------- /CaducaRest/Resources/mensajes.es-MX.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Resources/mensajes.es-MX.resx -------------------------------------------------------------------------------- /CaducaRest/Rules/Categoria/ReglaClaveUnico.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Rules/Categoria/ReglaClaveUnico.cs -------------------------------------------------------------------------------- /CaducaRest/Rules/Categoria/ReglaNombreUnico.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Rules/Categoria/ReglaNombreUnico.cs -------------------------------------------------------------------------------- /CaducaRest/Rules/Cliente/ClaveValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Rules/Cliente/ClaveValidation.cs -------------------------------------------------------------------------------- /CaducaRest/Rules/Cliente/RazonSocialValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Rules/Cliente/RazonSocialValidation.cs -------------------------------------------------------------------------------- /CaducaRest/Rules/Producto/ClaveValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Rules/Producto/ClaveValidation.cs -------------------------------------------------------------------------------- /CaducaRest/Rules/Producto/NombreValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Rules/Producto/NombreValidation.cs -------------------------------------------------------------------------------- /CaducaRest/Rules/RequiredWithField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Rules/RequiredWithField.cs -------------------------------------------------------------------------------- /CaducaRest/Scripts/CaducaBD.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Scripts/CaducaBD.sql -------------------------------------------------------------------------------- /CaducaRest/Scripts/CaducaSQLBD.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Scripts/CaducaSQLBD.sql -------------------------------------------------------------------------------- /CaducaRest/Scripts/Categoria.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Scripts/Categoria.sql -------------------------------------------------------------------------------- /CaducaRest/Scripts/migrations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Scripts/migrations.sql -------------------------------------------------------------------------------- /CaducaRest/Scripts/update_to_latest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Scripts/update_to_latest.sql -------------------------------------------------------------------------------- /CaducaRest/Setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Setup.sh -------------------------------------------------------------------------------- /CaducaRest/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Startup.cs -------------------------------------------------------------------------------- /CaducaRest/Templates/IntentosIncorrectos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Templates/IntentosIncorrectos.html -------------------------------------------------------------------------------- /CaducaRest/Templates/NuevoAcceso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/Templates/NuevoAcceso.html -------------------------------------------------------------------------------- /CaducaRest/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/appsettings.Development.json -------------------------------------------------------------------------------- /CaducaRest/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/appsettings.json -------------------------------------------------------------------------------- /CaducaRest/logs/readme.md: -------------------------------------------------------------------------------- 1 | Folder to logs 2 | -------------------------------------------------------------------------------- /CaducaRest/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/CaducaRest/web.config -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/Dockerfile -------------------------------------------------------------------------------- /Migrations.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/Migrations.Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/azure-pipelines-1.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /specflow-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apis3445/CaducaRest/HEAD/specflow-pipelines.yml --------------------------------------------------------------------------------