agregado procesos y bd clases
This commit is contained in:
36
bdAsegasa/Extensiones/ficheroscompanias.cs
Normal file
36
bdAsegasa/Extensiones/ficheroscompanias.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user