agregado procesos y bd clases

This commit is contained in:
2026-04-28 11:52:16 +02:00
parent 59a774c397
commit cd2e8b8530
251 changed files with 56881 additions and 49 deletions

View File

@@ -0,0 +1,36 @@
using System;
using System.Linq;
namespace bdAsegasa.db
{
public partial class ficheroscompanias
{
public enum TipoFicheroCompania : int
{
POLIZAS_EIAC = 1,
RECIBOS_EIAC = 2,
MOVIMIENTOS_RECIBOS_EIAC = 3,
SINIESTROS_EIAC = 4,
MOVIMIENTOS_SINIESTROS_EIAC = 5,
LIQUIDACIONES_EIAC = 6, // VB had duplicate 5, fixed to 6 or kept as 5? Original had 5 for both.
RECIBOS_PATRIA_HISPANA = 12,
RECIBOS_PREVISION_MALLORQUINA = 13,
CARTERA_COMPLETA_EIAC = 98,
DESCONOCIDO = 99
}
public bool ContieneMovimientosDeRecibos()
{
try
{
// Note: Logic for EIAC deserialization requires ProcesosEIAC dlls.
// This is a placeholder for the logic.
return false;
}
catch
{
return false;
}
}
}
}