37 lines
991 B
C#
37 lines
991 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
}
|