From 196cc6d4b347f655e6f4190fee2de774b71278da Mon Sep 17 00:00:00 2001 From: Felix Morales Date: Wed, 22 Nov 2023 12:43:21 -0600 Subject: [PATCH] =?UTF-8?q?Agregar=20propiedad=20Referencia=20al=20DTORepo?= =?UTF-8?q?rteCorresponsales=20y=20aumentar=20el=20tama=C3=B1o=20maximo=20?= =?UTF-8?q?de=20los=20archivos=20que=20se=20pueden=20cargar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DTO/Reportes/DTOReporteCorresponsales.cs | 1 + Repository/ReportesRepository.cs | 3 ++- web.config | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/DTO/Reportes/DTOReporteCorresponsales.cs b/DTO/Reportes/DTOReporteCorresponsales.cs index 80989c1..0bed2aa 100644 --- a/DTO/Reportes/DTOReporteCorresponsales.cs +++ b/DTO/Reportes/DTOReporteCorresponsales.cs @@ -17,5 +17,6 @@ namespace CORRESPONSALBackend.DTO.Reportes public int Pedimento {get;set;} = 0; public int Patente {get;set;} = 0; public int Aduana {get;set;} = 0; + public string? Referencia { get; set; } = null!; } } \ No newline at end of file diff --git a/Repository/ReportesRepository.cs b/Repository/ReportesRepository.cs index 357247c..abbc0b6 100644 --- a/Repository/ReportesRepository.cs +++ b/Repository/ReportesRepository.cs @@ -30,7 +30,8 @@ namespace CORRESPONSALBackend.Repository @Aduana = data.Aduana, @Pedimento = data.Pedimento, @Proceso = data.Proceso, - @Modo = data.Modo + @Modo = data.Modo, + @Referencia = data.Referencia }, commandType: CommandType.StoredProcedure); return entrada; diff --git a/web.config b/web.config index 472c4ae..d0b4c1f 100644 --- a/web.config +++ b/web.config @@ -12,7 +12,7 @@ - +