Agregar propiedad Referencia al DTOReporteCorresponsales y aumentar el tamaño maximo de los archivos que se pueden cargar

feature/Reporte_Relacion_Facturas_Alen
Felix Morales 10 months ago
parent 4347a8d7aa
commit 196cc6d4b3
  1. 1
      DTO/Reportes/DTOReporteCorresponsales.cs
  2. 3
      Repository/ReportesRepository.cs
  3. 2
      web.config

@ -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!;
}
}

@ -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;

@ -12,7 +12,7 @@
</aspNetCore>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="50000000" />
<requestLimits maxAllowedContentLength="62914561" />
</requestFiltering>
</security>
</system.webServer>

Loading…
Cancel
Save